#BtnToTop {
    position: fixed;
    bottom: 50px;
    right: 50px;

    width: 50px;
    height: 50px;

    background-color: #01bf69e6;
    text-align: center;
    color: #FFF;
    user-select: none;

    z-index: 999;
}

#BtnToTop img{
    height: 50px;
}

@media (max-width: 767px) {
    #BtnToTop {
        /* display: none; */
        position: fixed;
        bottom: 40px;
        right: 20px;
    }
    
    #BtnToTop img{
        height: 100%;
        width: 100%;
    }
}

.d-flex{
    display: flex;
}
.favour-container{
    /* justify-content: space-between; */
    gap: .7em;
}

.favour-container .fav-btn{
    flex: none;
    margin-top: 8px;
}


/* header styles */
header .inner {
    width: calc(100% - 150px);
    max-width: 1220px;
    margin: 0 auto;
    /* padding: 0 50px; */
    padding: 0 9px 0 9px;
  }

header .inner:after {
    content: "";
    display: table;
    clear: both;
}

header .inner .header-layout{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .inner a.brand-logo {
    display: inline-block;
    margin: 7px 0;
}

header .inner a.brand-logo img {
    width: 200px;
}

header .inner .title{
    text-align: center;
    color: #00A758;
    margin-top: 23px;
    margin-bottom: 23px;
    font-size: 30px;
}

.container .sharing_materials_library{
    /* text-align: right; */
    display: flex;
    justify-content: space-between;
    /* width: calc(100% - 150px); */
    max-width: 1220px;
    margin: 0 auto;
    padding-left: calc(6% + 15px);
    padding-right: 15px;
}
@media (max-width: 767px) {
    .container .sharing_materials_library{
        width: auto;
    }

    .favour-container .fav-btn{
        margin-top: 0px;
    }
}

/* adding tabs for sharing materials */
.padding-left-for-nav{
    padding-left: 75px;
}
.page-select-product {
    color: black;
    font-size: 20px !important;
    padding: 10px 0 0 100px;
    text-align: center;
}
.dropbtn {
    background-color: #fafafa;
    color: grey;
    border: 0;
    border-bottom: 1px dashed grey;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    text-align: left;
    width: 200px;
}

.dropbtn span.icon {
    background: url('../../images/menu_components/circle-down.svg') no-repeat center center;
    float: right;
    padding-top: 15px;
    margin-left: 10px;
    width: 10px;
    border: none;
    background-size: 13px 13px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    white-space: nowrap;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    text-align: left;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #ddd;
    border-left: 2px solid #00A758
}

.showDropdown {
    display: block;
}

.showSelected {
    background-color: #ddd;
    border-left: 2px solid #00A758
}

@media (max-width: 767px) {
    .page-select-product {
        font-size: 16px !important;
        padding: 10px 0 10px 0;
    }

    .dropbtn {
        background-color: #fafafa;
        color: grey;
        border: 0;
        border-bottom: 1px dashed grey;
        display: inline-block;
        cursor: pointer;
        white-space: nowrap;
        text-align: left;
        width: 170px;
    }

    .dropbtn span.icon {
        background: url('../../images/menu_components/circle-down.svg') no-repeat center center;
        float: right;
        padding-top: 15px;
        margin-left: 10px;
        width: 10px;
        border: none;
        background-size: 13px 13px;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        white-space: inherit;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 99;
        text-align: left;
    }

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown a:hover {
        background-color: #ddd;
        border-left: 2px solid #00A758
    }

    .showDropdown {
        display: block;
    }

    .showSelected {
        background-color: #ddd;
        border-left: 2px solid #00A758
    }

    .title_section .title-sm {
        display: block;
        text-align: center;
        color: #00A758;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 28px;
    }

    .title_section .title-sm .title-sm-layout {
        width: 100%
    }
}