@font-face {font-family: STC; src: url('../fonts/STC-Regular.ttf');}
body{
    font-family: STC, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 16px;
    --main-color: #2b3c82;
    --second-color: #c72b3b;
    --gradient: linear-gradient(90deg, var(--main-color),var(--second-color));
    padding-top: 175px;
    background: #f1f1f2;
}
ul {list-style: none;padding: 0;margin: 0;}
a {text-decoration: none !important;}
p {margin-bottom: 0;}
.img-shine {
    width: 100%;
    overflow: hidden;
    position:relative;
    overflow:hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background:#000
}
.img-shine img,
.img-shine iframe {
    width: 100%;
    transition: all 01s ease-in-out;
}

.img-shine::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-17deg);
    -moz-transform: skewX(-17deg);
    -o-transform: skewX(-17deg);
    -ms-transform: skewX(-17deg);
    transform: skewX(-17deg);
}

.img-shine:hover::before {
    -webkit-animation: shine .95s;
    -moz-animation: shine .95s;
    animation: shine .95s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
/* -- Header -- */

.header-top {
    background: var(--gradient);
    padding: 5px 0 10px;
    border-bottom: 1px solid #aaa;
    position: relative;
}

.header-top .location {
    font-size: 13px;
    margin-top: 5px;
}

.header-top .location label {
    color: #fff;
    font-weight: normal;
    margin-left: 10px;
}

.header-top .location label svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    position: relative;
    top: 5px;
}

.header-top .location button {
    position: relative;
    top: -7px;
    right: -5px;
    padding-top: 6px;
    padding-right: 10px;
    padding-left: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    outline: none;
    border: 2px solid #fff;
    background: linear-gradient(90deg, var(--second-color),var(--main-color));
}

.header-top .location button svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.nice-select {
    float: none;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding-right: 18px;
    padding-left: 30px;
    min-width: 150px;
    text-align: right !important;
    border: 0;
}

.nice-select .option {
    text-align: right;
}

.nice-select .list {
    left: 0;
    right: 0;
}

.nice-select:after {
    right: auto;
    left: 12px;
}

.header-top .nice-select {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.header-area {
    background: var(--gradient);
    padding: 5px 0;
}

.header-area .logo {
    height: 90px;
    transition: all .5s ease-in-out;
}

header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    transition: all .5s ease-in-out;
}

header.sticky {
    top: -60px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

header.sticky .logo {
    height: 50px;
}

header.sticky .navbar-default {
    margin-top: 0;
}

header .left-list {
    padding: 5px 0;
    float: left;
}

header .left-list li {
    display: inline-block;
    margin-right: 10px;
}

header .left-list svg {
    width: 20px !important;
    height: 20px;
    fill: #fff;
    transition: all .5s ease-in-out;
}

header .left-list button {
    background: none;
    border: none;
    outline: none;
}

header .left-list li .icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in-out;
    background: transparent;
    border-radius: 50%;
    position: relative;
    top: 5px;
}

header .left-list li:hover .icon {
    background: #fff;
}

header .left-list li:hover .icon svg {
    fill: #2b3c82;
}

header .search-btn {
    cursor: pointer;
}

header .left-list a {
    color: #fff;
}

header .left-list .number {
    position: relative;
    display: inline-block;
}

header .left-list .number:after {
    left: 0;
    right: 100%;
    opacity: 0;
    bottom: 0;
    position: absolute;
    content: '';
    border-bottom: 1px solid #fff;
    transition: all .5s ease-in-out;
}

header .left-list li:hover .number:after {
    right: 0;
    opacity: 1;
}

header .close-menu {
    display: none;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .navbar-default .navbar-nav > li > a {
        padding: 10px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .navbar-default .navbar-nav > li > a {
        padding: 10px 8px;
        font-size: 13px !important;
    }
    header .header-area .logo {
        height: 50px;
        margin-top: 35px;
    }
    header.sticky .header-area .logo {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 230px;
    }
    .header-top .location {
        text-align: center;
    }
    header .left-list {
        float: none;
        text-align: center;
        margin-top: 10px;
    }
    header .left-list li {
        margin-right: 3px;
    }

    header .col-sm-10 {
        position: static;
    }
    .header-area {
        position: relative;
    }

    .navbar-default {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .navbar-default .navbar-toggle {
        margin-top: 0;
        border: 0;
        background: none !important;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background: #fff;
    }

    .login-area .account > button .name {
        display: none;
    }

    .navbar-collapse {
        display: block;
        border: 0 !important;
        box-shadow: none;
    }

    .navbar-nav {
        display: block;
        position: fixed;
        z-index: 1021;
        top: 0;
        right: -170px;
        width: 170px;
        bottom: 0;
        overflow-y: scroll;
        background: #404456;
        padding: 15px;
        border: 0;
        margin: 0;
        transition: all .5s ease-in-out;
    }

    .navbar-nav.open {
        right: 0;
    }

    header .close-menu {
        display: block;
        position: absolute;
        z-index: 55;
        top: -10px;
        left: 15px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
    }
    .overlay-all {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1020;
        display: none;
        background: rgba(0,0,0,0.5);
    }
    .search-form .btn-close,
    .search-form {
        transition: all .5s ease-in-out;
    }

    header.sticky .search-form {
        top: 60px;
    }

    header.sticky .search-form .btn-close {
        top: -15px;
    }
}

/* -- ./Header -- */

/* -- Search Form -- */

.search-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    opacity: 0;
    bottom: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

.search-form.open {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.search-form input {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    width: calc(100% - 4px);
    border: 0;
    outline: none;
    padding: 0 10px;
}

.search-form .btn-close {
    position: absolute;
    top: -10px;
    bottom: 0;
    left: 0;
    font-size: 45px;
    padding: 0 10px;
    opacity: 0.7;
    color: #2b3c82;
    outline: none;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.search-form .btn-close:hover {
    opacity: 1;
}

/* -- ./Search Form -- */

/* -- login -- */

.modal {
    background: rgba(0,0,0,0.3);
}

.login-modal .nav-tabs {
    margin-top: 10px;
    margin-bottom: 25px;
    border: 0;
}

.login-modal .nav-tabs li {
    width: 49%;
    text-align: center;
    padding: 5px 10px;
}

.login-modal .nav-tabs li a {
    color: #aaa;
    border: 0;
    border-bottom: 2px solid #aaa;
}

.login-modal .nav-tabs li a svg {
    fill: #aaa;
}

.login-modal .nav-tabs li svg {
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
    margin-left: 5px;
}

.login-modal .nav-tabs li a:hover,
.login-modal .nav-tabs li a:focus {
    color: #777;
    border: 0;
    border-bottom: 2px solid #777;
    background: transparent;
}

.login-modal .nav-tabs li a:hover svg,
.login-modal .nav-tabs li a:focus svg {
    fill: #777;
}

.login-modal .nav-tabs li.active a {
    color: #2b3c82;
    border-color: #2b3c82;
}

.login-modal .nav-tabs li.active a svg {
    fill: #2b3c82;
}

.login-modal .close {
    font-size: 45px;
    z-index: 99;
    outline: none;
    color: #2b3c82;
    opacity: 1;
    position: absolute;
    top: -10px;
    left: 10px;
}

.modal-backdrop {
    opacity: 0;
}

.login-modal form label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.login-modal form input,
.login-modal form .nice-select {
    display: block;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: 1px solid #e1e1e1;
    padding: 5px 10px;
    margin-bottom: 15px;
}

.login-modal form .nice-select {
    height: 35px;
}

.login-modal form .nice-select .current {
    position: relative;
    top: -5px;
}

.login-modal h3.card-title {
    color: #2b3c82;
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
}

.login-modal .join-img {
    background: #f2f2f2;
    border-radius: 15px;
    margin-top: 15px;
}

.login-modal .forget-password {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.login-modal .forget-password:hover {
    text-decoration: underline;
    color: #777;
}

.login-modal form button {
    display: block;
    margin: 0 auto 15px;
    background: var(--gradient);
    padding: 5px 10px 10px;
    border-radius: 10px;
    color: #fff;
    border: 0;
    transition: all .5s ease-in-out;
}

.login-modal form button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    position: relative;
    top: 5px;
}

.login-modal form button:hover {
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.login-modal .password-form {
    display: none;
}

.login-area .account {
    position: relative;
}

.login-area .account ul {
    position: absolute;
    top: 60px;
    opacity: 0;
    min-width: 110px;
    visibility: hidden;
    right: 0;
    background: #fff;
    border-radius: 10px;
    z-index: 999;
    transition: all .5s ease-in-out;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.7);
}

.login-area .account ul li {
    border-bottom: 1px solid #e1e1e1;
}

.login-area .account ul li:last-child {
    border-bottom: 0;
}

.login-area .account ul a,
.login-area .account ul button {
    color: #444;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    display: block;
    transition: all .5s ease-in-out;
}

.login-area .account > button {
    color: #fff;
}

.login-area .account ul a:hover,
.login-area .account ul button:hover {
    color: #3b5998;
}

@media (min-width: 992px) {
    .login-area .account button:hover + ul,
    .login-area .account ul:hover {
        top: 35px;
        opacity: 1;
        visibility: visible;
    }
}

.login-area .account ul.open {
    top: 35px;
    opacity: 1;
    visibility: visible;
}

/* -- /login -- */

/* -- Menu -- */

.navbar-default {
    margin-bottom: 0;
    background: none;
    border: 0;
    border-radius: 0;
    float: left;
    margin-top: 20px;
    transition: all .5s ease-in-out;
}

.navbar-collapse {
    padding: 0;
}

.navbar-default .navbar-nav > li > a {
    color: #fff !important;
    background: transparent !important;
    transition: all .5s ease-in-out;
    font-weight: bold;
    font-size: 15px;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #eee !important;
    text-shadow: 2px 2px 5px rgba(255,255,255,0.8);
}

/* -- ./Menu -- */

/* -- Main Slider -- */

.main-slider {
    height: calc(100vh - 170px);
    overflow: hidden;
    margin-top: -10px;
}

.main-slider .flickity-viewport {
    height: calc(100vh - 170px) !important;
}

.main-slider .item {
    width: 60%;
    height: 100%;
    padding: 0 3px;
}

.main-slider .item .box {
    transition: all .5s ease-in-out;
    position: relative;
    width: 100%;
    height: 100%;
}

.main-slider .item .box .overlay {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    transition: all .5s ease-in-out;
}

.main-slider .item .box p {
    position: absolute;
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
    line-height: 40px;
    left: 15px;
    right: 15px;
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    z-index: 9999;
    max-height: 85px;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.main-slider .item .box img {
    width: 100%;
    height: 100%;
}

.main-slider .item.item.is-selected .box p {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.main-slider .item.is-selected .box .overlay {
    background: rgba(0,0,0,0.3);
}

.main-slider .flickity-prev-next-button.next {
    right: calc(20% - 70px);
}

.main-slider .flickity-prev-next-button.previous {
    left: calc(20% - 75px);
}

.main-slider .flickity-prev-next-button {
    background: var(--second-color);
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: all .5s ease-in-out;
}

.main-slider .flickity-prev-next-button:hover {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.main-slider .flickity-prev-next-button .arrow {
    fill: #fff;
}

.main-slider .type-block  {
    position: absolute;
    z-index: 9999;
    top: 15px;
    right: 15px;
    box-shadow: 0 0 5px rgba(255,255,255,0.8);
}

.type-block {
    background: var(--main-color);
    color: #fff;
    border: 2px solid var(--main-color);
    padding: 2px 10px 5px;
    border-radius: 15px;
    transition: all .5s ease-in-out;
}

.type-block:hover {
    background: #fff;
    color: var(--main-color);
}

.type-block svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 5px;
    position: relative;
    top: 2px;
    transition: all .5s ease-in-out;
}

.type-block:hover svg {
    fill: var(--main-color);
}

.type-block.orange {
    background: #d48f12;
    border: 2px solid #d48f12;
}

.type-block.orange:hover {
    color: #d48f12;
    background: #fff;
}

.type-block.orange:hover svg {
    fill: #d48f12;
}

.type-block.blue {
    background: #404456;
    border: 2px solid #404456;
}

.type-block.blue:hover {
    color: #404456;
    background: #fff;
}

.type-block.blue:hover svg {
    fill: #404456;
}

.type-block.red {
    background: #a73939;
    border: 2px solid #a73939;
}

.type-block.red:hover {
    color: #a73939;
    background: #fff;
}

.type-block.red:hover svg {
    fill: #a73939;
}

.type-block.green {
    background: #080;
    border: 2px solid #080;
}

.type-block.green:hover {
    color: #080;
    background: #fff;
}

.type-block.green:hover svg {
    fill: #080;
}

@media (max-width: 767px) {
    .main-slider .item {
        width: 100%;
        height: 100%;
    }
    .main-slider .flickity-prev-next-button {
        width: 20px;
        height: 20px;
        top: 20px;
        left: 10px !important;
    }
    .main-slider .flickity-prev-next-button.next {
        right: auto;
        left: 35px !important;
    }
    .type-block {
        padding: 5px;
        font-size: 13px;
    }
    .type-block svg {
        width: 18px;
        height: 15px;
    }
    .main-slider .item .box p {
        font-size: 16px;
        line-height: 20px;
        height: 40px;
    }

    .main-slider .item.item.is-selected .box p {
        bottom: 10px;
    }
    .main-slider .flickity-viewport {
        height: 320px !important;
    }
    .main-slider {
        height: 320px;
    }
}

@media (max-width: 500px) {
    .main-slider .flickity-viewport {
        height: 225px !important;
    }
    .main-slider {
        height: 225px;
    }
}

/* -- ./Main Slider -- */

/* -- Sections -- */

.sections {
    margin-top: 50px;
    position: relative;
    padding-top: 25px;
}

.sections .img-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
}

.sections .container {
    position: relative;
    z-index: 1;
}

.main-title {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-right: 2px solid var(--main-color);
    padding: 0 20px 20px;
    position: relative;
    margin-bottom: 25px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.main-title h2 svg {
    width: 35px;
    height: 35px;
    fill: var(--second-color);
    position: relative;
    top: 10px;
}

.main-title h2 svg * {
    fill: var(--second-color);
}

.main-title h2 {
    font-size: 18px;
    line-height: 30px;
    color: var(--second-color);
    margin: 0;
}

.main-title a {
    position: absolute;
    left: 20px;
    top: 8px;
    bottom: 0;
    color: var(--main-color);
    font-weight: bold;
    font-size: 13px;
    transition: all .5s ease-in-out;
}

.main-title a:hover {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.main-title a svg {
    width: 25px;
    height: 25px;
    position: relative;
    top: 10px;
    fill: var(--main-color)
}

.section-slider {
    margin-top: 50px;
}

.section-slider .flickity-viewport {
    height: 200px !important;
}

.section-slider .item {
    width: 20%;
    height: 100%;
    padding: 10px;
}

.section-slider .item .box {
    height: 100%;
    display: block;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-slider .item svg {
    width: 100px;
    height: 100px;
    fill: var(--main-color);
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 10;
}

.section-slider .item .box {
    border-radius: 15px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    padding: 15px;;
}

.section-slider .item .box span {
    position: relative;
    z-index: 10;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
    color: #444;
    transition: all .5s ease-in-out;
}

.section-slider .item .box .bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: var(--gradient);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: all .5s ease-in-out;
}

.section-slider .item .box:hover .bg {
    border-radius: 0;
    transform: scale(1);
    opacity: .7;
}

.section-slider .item .box:hover span {
    color: #fff;
}

.section-slider .item .box:hover svg {
    fill: #fff;
}

.section-slider .flickity-prev-next-button {
    background: none;
}

@media (max-width: 1200px) and (min-width: 768px) {
    .section-slider .item  {
        width: 33.33%;
    }
}

@media (max-width: 767px) and (min-width: 401px) {
    .section-slider .item  {
        width: 50%;
    }
}

@media (max-width: 400px) {
    .section-slider .item  {
        width: 100%;
    }
    .main-title a {
        left: 10px;
        top: 13px;
    }
    .main-title a svg {
        width: 20px;
        height: 20px;
        top: 7px;
    }
}

/* -- ./Sections -- */

/* -- Our New -- */

.--mt {
    margin-top: 100px;
}

.block-box {
    position: relative;
    background: #fff;
    border: 1px solid #e1e1e1;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.block-box .img-shine img {
    width: 100%;
    height: 225px;
}

.block-box .brand-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: 10px;
    left: 10px;
}

.block-box h2 {
    color: #404456;
    font-size: 18px;
    font-weight: bold;
    padding: 0 15px;
    width: calc(100% - 150px);
}

.block-box p {
    color: #999;
    padding: 0 15px;
}

.block-box p svg {
    width: 25px;
    height: 25px;
    fill: #999;
    margin-left: 10px;
}

.block-box .show-details {
    background: var(--gradient);
    padding: 10px;
    display: block;
    margin: 20px auto;
    text-align: center;
    border-radius: 25px;
    width: 140px;
    color: #fff;
    transition: all .5s ease-in-out;
}

.block-box .show-details:hover {
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.4);
}

.block-box .type-block {
    transform: scale(0.8);
    margin-top: 10px;
    float: left;
}

.block-box .price {
    padding: 10px 15px;
    color: #999;
    font-size: 13px;
}

.block-box .price svg {
    width: 25px;
    height: 25px;
    fill: #999;
    margin-left: 10px;
    position: relative;
    top: 5px;
}

.block-box .price .new-price {
    float: left;
    font-size: 18px;
    color: #2b3c82;
    margin-top: 10px;
    margin-left: 10px;
    display: inline-block;
    animation: blanker 1.2s linear infinite;
}

.news-block {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-bottom: 15px;
    border: 1px solid #e1e1e1;
    transition: all .5s ease-in-out;
    margin-bottom: 20px;
}

.news-block:hover {
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.news-block .date {
    display: block;
    font-size: 12px;
    margin: 10px;
    color: #aaa;
}

.news-block .read-more {
    position: absolute;
    top: 0;
    left: 0;
    background: #2b3c82;
    padding: 2px 10px 12px; 
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    transition: all .5s ease-in-out;
    border-right: 1px solid #2b3c82;
}

.news-block .read-more:hover {
    background: #fff;
    color: #2b3c82;
}

.news-block .read-more svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
    margin-left: 5px;
    transition: all .5s ease-in-out;
}

.news-block .read-more:hover svg {
    fill: #2b3c82;
}

.news-block img {
    width: 100%;
    height: 170px;
}

.news-block p.info {
    padding: 5px 10px;
    height: 50px;
    overflow: hidden;
    font-weight: bold;
}

@media (max-width: 767px) and (min-width: 450px) {
    .block-box .img-shine img,
    .news-block img {
        height: 300px;
    }
    .block-box h2 {
        width: calc(100% - 70px);
    }
}

@media (max-width: 450px) {
    .news-block img {
        height: 225px;
    }
    .block-box h2 {
        width: calc(100% - 70px);
    }
}

@media (max-width: 991px) {
    .--mt {
        margin-top: 25px;
    }
}

/* -- ./Our New -- */

/* -- New Participants -- */

.participants {
    position: relative;
}

.participants .img-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    transform: rotateY(180deg);
}

.member-slider .flickity-viewport {
    height: 250px !important;
}

.member-slider .item {
    width: calc(25% - 20px);
    margin: 0 10px;
    height: 100%;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    overflow: hidden;
}

.member-slider .item img {
    width: 100%;
    height: 150px;
}

.member-slider .item h2 {
    padding: 0 15px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.member-slider .item span {
    display: block;
    padding: 10px 15px;
    color: #999;
    font-size: 13px;
}

.member-slider .item span svg {
    width: 20px;
    height: 20px;
    fill: #999;
}

.member-slider .flickity-prev-next-button {
    top: -55px;
    width: 40px;
    height: 25px;
    background: var(--gradient);
    border-radius: 15px;
    outline: none;
}

.member-slider .flickity-prev-next-button .arrow {
    fill: #fff;
}

.member-slider .flickity-prev-next-button.previous {
    left: 20px;
}

.member-slider .flickity-prev-next-button.next {
    left: 70px;
    right: auto;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .member-slider .item {
        width: 31.33%;
    }
}

@media (max-width: 991px) and (min-width: 501px) {
    .member-slider .item {
        width: 48.5%;
    }
}

@media (max-width: 500px) {
    .member-slider .item {
        width: 100%;
    }
}

/* -- ./New Participants -- */

/* -- Most wanted -- */

.most-wanted .nav-tabs {
    margin-bottom: 15px;
    border: 0;
}

.most-wanted .nav-tabs li {
    float: right;
    width: calc(100% / 7);
    text-align: center;
}

.most-wanted .nav-tabs li svg {
    width: 30px;
    height: 30px;
    fill: #404456;
    display: block;
    margin: 10px auto;
    transition: all .5s ease-in-out;
}

.most-wanted .nav-tabs li a {
    border: 1px solid #e1e1e1;
    font-size: 14px;
    min-height: 120px;
    background: #fff;
    color: #404456;
    font-weight: bold;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

.most-wanted .nav-tabs li a:hover {
    color: var(--second-color);
}

.most-wanted .nav-tabs li a:hover svg {
    fill: var(--second-color)
}

.most-wanted .nav-tabs li.active a {
    background: var(--gradient);
    color: #fff;
}

.most-wanted .nav-tabs li.active svg {
    fill: #fff !important;
}

.block-box2 {
    background: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    overflow: hidden;
}

.block-box2 .col-xs-5 {
    padding-left: 5px;
}

.block-box2 .col-xs-7 {
    position: static;
}

.block-box2 .img-shine img {
    width: 100%;
    height: 170px;
}

.block-box2 .brand-img {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 50px;
    height: 50px;
}

.block-box2 .type-block {
    transform: scale(.8);
    position: relative;
    right: -5px;
    margin-top: 10px;
    display: inline-block;
}

.block-box2 h2 {
    font-size: 18px;
    font-weight: bold;
    color: #404456;
    margin: 15px 0;
}

.block-box2 p {
    color: #999;
}

.block-box2 p svg {
    width: 25px;
    height: 25px;
    fill: #999;
} 

.block-box2 .show-details {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    padding: 8px 10px;
    color: #fff;
    font-size: 13px;
    border-top-right-radius: 15px;
    transition: all .5s ease-in-out;
}

.block-box2 .show-details:hover {
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.4);
}

.block-box2 .discount-icon svg {
    position: absolute;
    top: -5px;
    left: 85px;
    width: 40px;
    height: 40px;
    margin-right: 40px;
    margin-top: 20px;
    fill: var(--main-color);
    animation: blanker 1s linear infinite;
}

@media (max-width: 991px) and (min-width: 768px)  {
    .most-wanted .nav-tabs li {
        width: calc(100% / 3);
        margin-bottom: 5px;
    }
    .block-box2 .img-shine img {
        height: 130px;
    }
    .block-box2 p {
        display: none;
    }
    .block-box2 .discount-icon svg {
        width: 20px;
        height: 20px;
    }
}


@media (max-width: 767px) {
    .most-wanted .nav-tabs li {
        width: calc(100% / 3);
        margin-bottom: 5px;
    }
    .most-wanted .nav-tabs li svg {
        margin-top: 0;
        margin-bottom: 5px;
    }
    .most-wanted .nav-tabs li a {
        padding: 10px 5px;
        min-height: 100px;
    }
    .block-box2 .discount-icon svg {
        width: 20px;
        height: 20px;
        left: 75px;
    }
}

@media (max-width: 400px) {
    .block-box2 .img-shine img {
        height: 150px;
    }
    .block-box2 p svg {
        width: 15px;
        height: 15px;
    }
    .block-box2 h2 {
        font-size: 14px;
        margin-top: 20px;
    }
    .block-box2 p {
        font-size: 12px;
        margin-top: -10px;
    }
}

/* -- ./Most Wanted -- */

/* -- Our Offer -- */

.offer-slider .flickity-viewport {
    height: 430px !important;
}

.offer-slider .item {
    width: 100%;
    height: 100%;
}

.offer-slider .discount-icon svg {
    width: 40px;
    height: 40px;
    margin-right: 40px;
    margin-top: 20px;
    fill: var(--main-color);
    animation: blanker 1s linear infinite;
}

@keyframes blanker {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.offer-slider .img-slider {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.offer-slider .img-slider .flickity-viewport {
    height: 400px !important;
}

.offer-slider .img-slider .item {
    width: 100%;
    height: 100%;
}

.offer-slider .img-slider .img-box,
.offer-slider .img-slider .img-box img {
    height: 100%;
    width: 100%;
}

.offer-slider .img-slider .flickity-prev-next-button {
    display: none;
}

.offer-slider .img-brand {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 80px;
    height: 80px;
}

.offer-slider ul li svg {
    width: 25px;
    height: 25px;
    position: relative;
    top: 5px;
}

.offer-slider .type-block {
    margin-top: 10px;
    display: inline-block;
}

.offer-slider h2 {
    font-size: 22px;
    font-weight: bold;
    color: #404456;
}

.offer-slider ul li {
    padding-right: 25px;
    margin-top: 15px;
}

.offer-slider ul li a {
    color: var(--main-color);
    font-weight: bold;
}

.offer-slider ul li a:hover {
    text-decoration: underline !important;
}

.offer-slider .show-details {
    background: var(--gradient);
    padding: 10px;
    display: block;
    margin: 20px auto;
    text-align: center;
    border-radius: 25px;
    width: 140px;
    color: #fff;
    position: absolute;
    right: calc(50% - 70px);
    bottom: 25px;
    transition: all .5s ease-in-out;
}

.offer-slider .show-details:hover {
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.4);
}

.offer-slider .col-xs-12 {
    height: 100%
}

.offer-slider > .flickity-page-dots {
    width: auto;
    left: 120px;
    bottom: -10px;
    direction: ltr;
}

.offer-slider > .flickity-prev-next-button {
    top: auto;
    bottom: -40px;
    width: 40px;
    height: 25px;
    background: var(--gradient);
    border-radius: 15px;
    outline: none;
}

.offer-slider > .flickity-prev-next-button .arrow {
    fill: #fff;
}

.offer-slider > .flickity-prev-next-button.next {
    left: 300px;    
    right: auto;
}

.offer-slider > .flickity-prev-next-button.previous {
    left: 60px
}

.offer-slider > .flickity-page-dots .dot {
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    position: relative;
    margin: 0 15px;
    opacity: 1;
}

.offer-slider > .flickity-page-dots .dot:after {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #777;
    transition: all .2s ease-in-out;
}

.offer-slider > .flickity-page-dots .dot.is-selected:after {
    color: var(--main-color);
    font-size: 30px;
    margin-top: -10px;
} 

.offer-slider > .flickity-page-dots .dot:nth-child(1):after {
    content: '1';
}

.offer-slider > .flickity-page-dots .dot:nth-child(2):after {
    content: '2';
}

.offer-slider > .flickity-page-dots .dot:nth-child(3):after {
    content: '3';
}

.offer-slider > .flickity-page-dots .dot:nth-child(4):after {
    content: '4';
}

.offer-slider > .flickity-page-dots .dot:nth-child(5):after {
    content: '5';
}

.img-slider .flickity-page-dots {
    bottom: 25px;
}

.img-slider .flickity-page-dots .dot {
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    border: 2px solid transparent;
    transition: all .5s ease-in-out;
}

.img-slider .flickity-page-dots .dot.is-selected {
    border: 2px solid var(--main-color);
}

.img-slider .flickity-page-dots .dot:after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    content: '';
    top: calc(50% - 10px);
    right: calc(50% - 10px);
}

.our-offer {
    margin-bottom: 100px;
}

@media (max-width: 991px) and (min-width: 768px) {
    .offer-slider .img-slider .flickity-viewport {
        height: 300px !important;
    }
}

@media (max-width: 767px) {
    .offer-slider .col-xs-12 {
        height: auto;
    }
    .offer-slider .flickity-viewport {
        height: 670px !important;
    }
    .offer-slider .show-details {
        left: 15px;
        right: auto;
    }
}

@media (max-width: 450px) {
    .offer-slider .img-slider .flickity-viewport {
        height: 225px !important;
    }
    .offer-slider .flickity-viewport {
        height: 540px !important;
    }
    .offer-slider .show-details {
        position: static;
    }
}

/* -- ./Our Offer -- */

/* -- Join Area -- */

.join-btn {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    background: #2b3c82;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    outline: none;
    border: 0;
    color: #fff;
    transform: scale(0.8);
    animation: blanker2 2s linear infinite;
}

.join-btn svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    display: block;
    margin: 0 auto;
}

@keyframes blanker2 {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(0.8);
    }
}

@media (max-width: 767px) {
    .join-btn {
        transform: scale(0.6);
        bottom: 0;
        left: 0;
        animation: blanker3 2s linear infinite;
    }
}

@keyframes blanker3 {
    0% {
        transform: scale(0.6);
    }
    50% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(0.6);
    }
}

/* -- ./Join Area -- */

/* -- Footer -- */

footer {
    background: #414141;
    padding: 30px 0 10px;
    border-top: 3px solid #77104f;
}

footer .site-map  {
    margin-top: 35px;
}

footer .site-map li {
    display: block;
    margin-left: 15px;
    margin-bottom: 15px;
}

footer .site-map li a {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
}

footer .site-map li a:hover {
    color: #aaa;
}

footer .method-title {
    font-weight: bold;
    color: #aaa;
    margin-bottom: 15px;
}

footer .method-list li {
    display: inline-block;
    margin-left: 15px;
}

footer .method-list li img {
    height: 30px;
}

footer iframe {
    width: 100%;
    height: 265px;
}

footer .payment-method {
    margin-top: 20px;
}

footer .payment-method li {
    display: inline-block;
    margin: 0 10px;
}

footer .payment-method img {
    margin: 5px auto;
    width: 50px;
    display: block;
}

footer .powered {
    direction: ltr;
    margin-top: 15px;
    padding-right: 25px;
    display: inline-block;
    color: #aaa;
    font-weight: bold;
}

footer .powered img {
    width: 100px;
    margin-left: 5px;
}

.download-app {
    margin-top: 10px;
    text-align: center;
}

.download-app li {
    display: block;
    margin-bottom: 15px;
}

.download-app li:last-child {
    margin-bottom: 0;
}

.download-app li img {
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.download-app li a {
    width: 160px;
    height: 50px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 10px 10px 15px;
    color: #fff;
    position: relative;
}

.download-app li a:hover {
    background: #fff;
    color: #77104f;
}

.download-app li a .ar {
    font-size: 12px;
    display: block;
    margin-bottom: -2px;
    margin-top: -3px;
}

.download-app li a .en {
    font-size: 16px;
    font-weight: 600;
}

.download-app li .app-store {
    padding-right: 40px;
}

.download-app li .app-store svg {
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.download-app li .play-store {
    padding-left: 40px;
}

.download-app li .play-store svg {
    font-size: 30px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.download-app li .huawei svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.download-app li .huawei:hover svg {
    fill: #77104f;
}

footer .footer-social {
    text-align: center;
}

footer .footer-social p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    text-align: right;
}

footer .footer-social ul li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
}

footer .footer-social ul li a {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    background: #555;
    color: #fff;
    transition: all .5s ease-in-out;
}

footer .footer-social ul li.facebook:hover a {
    background: #3b5998;
}

footer .footer-social ul li.twitter:hover a {
    background: #55acee;
}

footer .footer-social ul li.instagram:hover a {
    background: #c53499;
}

footer .footer-social ul li.telegram:hover a {
    background: #2fa7db;
}

footer .service p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
}

footer .service svg {
    width: 100px;
    height: 100px;
    fill: #fff;
}

footer .service .number {
    margin-right: 90px;
    display: block;
    color: #fff;
}

@media (max-width: 991px) and (min-width: 768px) {
    footer .footer-social ul li {
        margin-left: 4px;
        margin-right: 4px;
        margin-bottom: 10px;
    }
    footer .service .number {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    footer iframe {
        margin-bottom: 15px;
    }
    footer .site-map,
    footer .service {
        text-align: center;
    }
    footer .service p {
        color: #aaa;
    }
    footer .service .number {
        margin-right: 0;
    }
    footer .payment-method {
        text-align: center;
    }
    footer .powered {
        display: block;
        text-align: center;
        padding-right: 0;
    }
}

/* -- ./Footer -- */


/* -- Service Providers Page -- */

.inner-page {
    padding-bottom: 25px;
}

.side-box {
    position: relative;
    background: #fff;
    padding: 15px;
    border: 1px solid #e1e1e1;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.side-box h2.box-title {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: bold;
    color: #404456;
}

.side-box .cancel-filter {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    background: #404456;
    opacity: .5;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    transition: all .5s ease-in-out;
}

.side-box .cancel-filter:hover {
    opacity: 1;
}

.side-box .search-from {
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
}

.side-box .search-from input {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 5px 10px 10px;
    outline: none;
    transition: all .5s ease-in-out;
    border: 1px solid #e1e1e1;
}

.side-box .search-from input:focus {
    border-color: var(--main-color);
}

.side-box .search-from button {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    padding: 5px 15px 10px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    background: var(--main-color);
    color: #fff;
    transition: all .5s ease-in-out;
}

.side-box .search-from button:hover {
    background: #fff;
    color: var(--main-color);
    border-color: var(--main-color);
}

.side-box .nice-select {
    border: 1px solid #e1e1e1;
    width: 100%;
    margin-bottom: 20px;
    transition: all .5s ease-in-out;
}

.side-box .nice-select:hover {
    border-color: var(--main-color);
}

.side-box .categories-box {
    padding-top: 20px;
    border-top: 1px dashed #e1e1e1;
}

.side-box .categories-box .sub-block {
    padding: 10px;
}

.side-box .categories-box .sub-block h3 a svg {
    width: 25px;
    height: 25px;
    position: relative;
    top: 5px;
    margin-left: 10px;
}

.side-box .categories-box .sub-block h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.side-box .categories-box .sub-block .open-list {
    float: left;
    cursor: pointer;
}

.side-box .categories-box .sub-block .open-list svg {
    width: 15px;
    height: 15px;
    position: relative;
    top: 10px;
}

.side-box .categories-box .sub-block ul {
    padding-top: 25px;
    padding-right: 25px;
    display: none;
}

.side-box .categories-box .sub-block ul li {
    padding: 5px 15px;
    position: relative;
}

.side-box .categories-box .sub-block ul li:after {
    position: absolute;
    content: '';
    right: -12px;
    top: 0;
    bottom: 0;
    border-right: 1px solid #e1e1e1;
}

.side-box .categories-box .sub-block ul li:first-child:after {
    top: -15px;
}

.side-box .categories-box .sub-block ul li:last-child:after {
    bottom: 50%;
}

.side-box .categories-box .sub-block ul li:before {
    position: absolute;
    content: '';
    right: -12px;
    top: 50%;
    width: 20px;
    border-bottom: 1px solid #e1e1e1;
}

.side-box .categories-box .sub-block.red h3 a,
.side-box .categories-box .sub-block.red .open-list  {
    color: #a73939;
}
.side-box .categories-box .sub-block.red svg {
    fill: #a73939;
}

.side-box .categories-box .sub-block.red ul a {
    color: #a73939;
}

.side-box .categories-box .sub-block.red ul li:after,
.side-box .categories-box .sub-block.red ul li:before {
    border-color: #a73939;
}

.side-box .categories-box .sub-block.green h3 a,
.side-box .categories-box .sub-block.green .open-list  {
    color: #080;
}
.side-box .categories-box .sub-block.green svg {
    fill: #080;
}

.side-box .categories-box .sub-block.green ul a {
    color: #080;
}

.side-box .categories-box .sub-block.green ul li:after,
.side-box .categories-box .sub-block.green ul li:before {
    border-color: #080;
}

.side-box .categories-box .sub-block.orange h3 a,
.side-box .categories-box .sub-block.orange .open-list  {
    color: #d48f12;
}
.side-box .categories-box .sub-block.orange svg {
    fill: #d48f12;
}

.side-box .categories-box .sub-block.orange ul a {
    color: #d48f12;
}

.side-box .categories-box .sub-block.orange ul li:after,
.side-box .categories-box .sub-block.orange ul li:before {
    border-color: #d48f12;
}

.side-box .categories-box .sub-block.blue h3 a,
.side-box .categories-box .sub-block.blue .open-list  {
    color: #404456;
}
.side-box .categories-box .sub-block.blue svg {
    fill: #404456;
}

.side-box .categories-box .sub-block.blue ul a {
    color: #404456;
}

.side-box .categories-box .sub-block.blue ul li:after,
.side-box .categories-box .sub-block.blue ul li:before {
    border-color: #404456;
}

.side-box .categories-box .sub-block.light-green h3 a,
.side-box .categories-box .sub-block.light-green .open-list  {
    color: #07ad7e;
}
.side-box .categories-box .sub-block.light-green svg {
    fill: #07ad7e;
}

.side-box .categories-box .sub-block.light-green ul a {
    color: #07ad7e;
}

.side-box .categories-box .sub-block.light-green ul li:after,
.side-box .categories-box .sub-block.light-green ul li:before {
    border-color: #07ad7e;
}

.side-box .categories-box .sub-block.purple h3 a,
.side-box .categories-box .sub-block.purple .open-list  {
    color: #a04065 ;
}
.side-box .categories-box .sub-block.purple svg {
    fill: #a04065 ;
}

.side-box .categories-box .sub-block.purple ul a {
    color: #a04065 ;
}

.side-box .categories-box .sub-block.purple ul li:after,
.side-box .categories-box .sub-block.purple ul li:before {
    border-color: #a04065 ;
}

.side-box .categories-box .sub-block.navy h3 a,
.side-box .categories-box .sub-block.navy .open-list  {
    color: #3b9aa3 ;
}
.side-box .categories-box .sub-block.navy svg {
    fill: #3b9aa3 ;
}

.side-box .categories-box .sub-block.navy ul a {
    color: #3b9aa3 ;
}

.side-box .categories-box .sub-block.navy ul li:after,
.side-box .categories-box .sub-block.navy ul li:before {
    border-color: #3b9aa3 ;
}

/* -- ./Service Providers Page -- */


/* -- Sections Page -- */

.all-sections .box {
    height: 100%;
    display: block;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    padding: 15px;
    margin-bottom: 20px;
}

.all-sections .box svg {
    width: 100px;
    height: 100px;
    fill: var(--main-color);
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 10;
}

.all-sections .box span {
    position: relative;
    z-index: 10;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
    color: #444;
    transition: all .5s ease-in-out;
}

.all-sections .box .bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: var(--gradient);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: all .5s ease-in-out;
}

.all-sections .box:hover .bg {
    border-radius: 0;
    transform: scale(1);
    opacity: .7;
}

.all-sections .box:hover span {
    color: #fff;
}

.all-sections .box:hover svg {
    fill: #fff;
}


/* -- ./sections Page -- */


/* -- Offer Details -- */

.white-box {
    background: #fff;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    border-radius: 10px;
    overflow: hidden;
}

.inner-slider .flickity-viewport {
    height: 450px !important;
}

.inner-slider .item,
.inner-slider .item img {
    width: 100%;
    height: 100%;
}

.inner-slider .flickity-prev-next-button {
    width: 40px;
    height: 25px;
    border-radius: 10px;
    background: var(--gradient);
    top: 30px;
}

.inner-slider .flickity-prev-next-button .arrow {
    fill: #fff;
}

.inner-slider .flickity-prev-next-button.previous {
    left: 20px;
}

.inner-slider .flickity-prev-next-button.next {
    right: auto;
    left: 70px;
}

.offer-details .info-box {
    padding: 20px;
    position: relative;
    z-index: 99;
    padding-top: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    top: -40px;
    background: #fff;
}

.offer-details .main-img {
    position: relative;
}

.offer-details .main-img img {
    width: 100%;
    min-height: 400px;
}

.offer-details .main-img .date {
    position: absolute;
    top: 0;
    left: 0;
    background: #2b3c82;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border-bottom-right-radius: 10px;
}

.offer-details .info-box h2.title img {
    width: 60px;
    height: 60px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    margin-left: 10px;
    display: inline-block;
}

.offer-details .info-box h2.title {
    font-weight: bold;
    font-size: 22px;
    color: #404456;
    margin: 0 0 10px;
}

.offer-details ul.info li {
    margin-bottom: 15px;
    color: #777;
}

.offer-details ul.info li svg {
    width: 25px;
    height: 25px;
    fill: #777;
    position: relative;
    top: 10px;
}

.offer-details ul.info li del {
    font-size: 13px;
}

.offer-details ul.info li .new-price {
    display: inline-block;
    margin-right: 25px;
    color: #a73939;
    font-weight: bold;
    animation: blanker 2s linear infinite;
}

.offer-details ul.info li a {
    font-weight: bold;
    color: var(--main-color);
    transition: all .5s ease-in-out;
}

.offer-details ul.info li a:hover {
    text-decoration: underline !important;
}

.offer-details .info-box .map {
    position: absolute;
    top: 50px;
    left: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.offer-details .info-box .map iframe {
    width: 250px;
    height: 200px;
}

.offer-details .info-box .socail li {
    display: inline-block;
    margin-left: 15px;
}

.offer-details .info-box .socail {
    margin: 25px 0;
}

.offer-details .info-box .socail li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.offer-details .info-box .socail li a:hover {
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.5);
}

.offer-details .info-box .socail li.facebook a {
    background: #3b5999;
}

.offer-details .info-box .socail li.twitter a {
    background: #55acee;
}

.offer-details .info-box .socail li.instagram a {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d)
}

.offer-details .info-box .info-list h3 svg {
    width: 30px;
    height: 30px;
    position: relative;
    top: 5px;
    fill: var(--second-color);
}

.offer-details .info-box .info-list h3 {
    color: var(--second-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.offer-details .info-box .info-list .details-box {
    line-height: 2;
    text-align: justify;
}

.offer-details .info-box .coupons-list li {
    border-radius: 15px;
    border: 1px solid var(--main-color);
    padding: 20px 20px 40px;
    margin-bottom: 25px;
    position: relative;
}

.offer-details .info-box .coupons-list .number {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--gradient);
    top: -15px;
    right: 15px;
    border-radius: 50%;
    color: #fff;
}

.offer-details .info-box .coupons-list li a {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gradient);
    padding: 8px 10px;
    color: #fff;
    font-size: 13px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: all .5s ease-in-out;
}

.offer-details .info-box .coupons-list li a:hover {
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.offer-details .inner-bransh {
    padding-right: 25px;
}

.offer-details .inner-bransh .name {
    font-size: 20px;
    font-weight: bold;
    color: #2b3c82;
    display: block;
    margin-bottom: 20px;
}

.offer-details .inner-bransh ul {
    padding-right: 25px;
}

.offer-details .inner-bransh ul li {
    margin-bottom: 15px;
}

.offer-details .inner-bransh ul li a {
    font-weight: bold;
    color: #2b3c82;
}

.offer-details .inner-bransh ul li a:hover {
    text-decoration: underline !important;
}

.offer-details .inner-bransh ul svg {
    width: 20px;
    height: 20px;
    fill: #c72b3b;
    margin-left: 5px;
}

.offer-details .inner-bransh ul iframe {
    width: calc(100% - 50px);
    height: 300px;
    margin-top: 15px;
}

.sub-block-brand {
    padding: 10px 15px;
    margin: 15px 0;
    border-bottom: 1px dashed var(--main-color);
}

.sub-block-brand:last-child {
    border: 0;
}

.sub-block-brand img {
    width: 100%;
    height: 100px;
}

.sub-block-brand h3 {
    margin: 0;
    max-height: 52px;
    overflow: hidden;
}

.sub-block-brand h3 a {
    color: #404456;
    font-size: 15px;
    font-weight: bold;
}

.sub-block-brand ul li {
    margin: 5px 0 !important;
}

.sub-block-brand .news-date {
    float: left;
    margin-top: 15px;
    color: #aaa;
    font-size: 12px;
}

@media (max-width: 991px) and (min-width: 768px) {
    .sub-block-brand img {
        height: 75px;
    }
}

@media (max-width: 767px) {
    .offer-details .main-img img {
        min-height: 200px;
    }

    .offer-details .main-title {
        margin-top: 30px;
    }
    .offer-details .info-box h2.title {
        font-size: 15px;
        line-height: 25px;
    }
    .offer-details .inner-bransh ul iframe {
        height: 200px;
    }
    .offer-details .inner-bransh {
        padding-right: 10px;
    }

    .offer-details .inner-bransh ul {
        padding-right: 5px;
    }

    .offer-details .inner-bransh ul iframe {
        width: calc(100% - 15px);
    }
}

/* -- ./Offer Details -- */

/* -- User Dashboard -- */

.profile .nav-tabs li {
    width: 33.333333%;
    float: right;
    text-align: center;
}

.profile .nav-tabs li svg {
    width: 25px;
    height: 25px;
    position: relative;
    top: 5px;
    right: -5px;
    fill: #404456;
    transition: all .5s ease-in-out;
}

.profile .nav-tabs li a {
    border: 1px solid #e1e1e1;
    font-size: 14px;
    background: #fff;
    color: #404456;
    font-weight: bold;
    transition: all .5s ease-in-out;
}

.profile .nav-tabs li a:hover {
    color: var(--second-color);
}

.profile .nav-tabs li a:hover svg {
    fill: var(--second-color)
}

.profile .nav-tabs li:last-child a {
    margin: 0;
}

.profile .nav-tabs li.active a {
    background: var(--gradient);
    color: #fff;
}

.profile .nav-tabs li.active svg {
    fill: #fff !important;
}

.profile .user-data {
    position: relative;
}

.profile .user-data .group {
    margin-bottom: 15px;
}

.profile .user-data label {
    color: #888;
    display: inline-block;
    width: 120px;
    font-size: 13px;
}

.profile .user-data input {
    padding: 10px 15px;
    width: calc(100% - 130px);
    border-radius: 10px;
    border: 1px solid transparent;
    background: #fff;
    font-weight: bold;
    outline: none;
    transition: all .5s ease-in-out;
}

.profile .user-data .nice-select {
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

.profile .user-data .nice-select.disabled:after {
    display: none;
}

.profile .user-data .edit {
    position: absolute;
    top: 15px;
    left: 30px;
    color: #aaa;
    font-weight: normal;
    transition: all .5s ease-in-out;
}

.profile .user-data .edit:hover {
    color: #000;
}

.profile .user-data .edit svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    fill: #aaa;
    transition: all .5s ease-in-out;
}

.profile .user-data .edit:hover svg {
    fill: #000;
}

.profile .user-data .password {
    display: none;
}

.profile .membership .add-btn,
.profile .user-data form button {
    display: block;
    margin: 15px auto;
    padding: 5px 15px;
    color: #fff;
    background: var(--gradient);
    border: 0;
    border-radius: 15px;
    outline: none;
    transition: all .5s ease-in-out;
    cursor: pointer;
    display: none;
}

.profile .membership .add-btn {
    display: inline-block;
}

.profile .membership .add-btn svg,
.profile .user-data form button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.profile .membership .add-btn:hover,
.profile .user-data form button:hover {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.7);
}

.profile .user-data.appear input {
    border: 1px solid #e1e1e1;
    cursor: text;
}

.profile .box-title {
    color: var(--main-color);
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 0;
}

.profile .box-title svg {
    width: 30px;
    height: 30px;
    fill: var(--main-color);
    margin-left: 5px;
    position: relative;
    top: 5px;
}

.profile .white-box {
    padding: 25px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e1e1e1;
    border-top: 0;
}

.profile .membership table {
    text-align: center;
    border: 1px solid #e1e1e1;
}

.profile .membership table th {
    color: var(--second-color);
    text-align: center;
    border: 1px solid #e1e1e1;
}

.profile .membership table td {
    border: 1px solid #e1e1e1;
}

.profile .notifi .single-notifi {
    border: 1px solid #aaa;
    padding: 20px 15px;
    position: relative;
    margin-bottom: 35px;
    border-radius: 10px;
    color: #404456;
    font-weight: bold;
}

.profile .notifi .single-notifi .time {
    background: #fff;
    padding: 2px 10px 4px;
    border-radius: 10px;
    color: #aaa;
    position: absolute;
    top: -20px;
    right: 15px;
}

.profile .notifi .single-notifi .time svg {
    width: 22px;
    height: 22px;
    fill: #aaa;
    position: relative;
    top: 5px;
}   

.profile .user-data .group.two {
    width: 48%;
    margin: 5px;
    display: inline-block;
}

.profile .user-data .group.two.password {
    display: none;
}

.profile .user-data.appear .group.two.password {
    display: inline-block !important;
}

.profile .user-data .group .nice-select {
    width: calc(100% - 130px);
    padding: 5px 10px;
    height: 40px;
    border-radius: 10px;
}

.profile .user-data.appear .group .nice-select {
    border: 1px solid #e1e1e1;
}

.profile .user-data {
    overflow: visible;
}

.profile .user-data .group.file {
    position: relative;
    margin: 10px 0;
    width: 100%;
}

.profile .user-data .group.file .add-imgs {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--second-color);
    overflow: hidden;
    font-size: 12px;
    font-weight: bold;
    display: none;
    transition: all .5s ease-in-out;
}

.profile .user-data.appear .group.file .add-imgs {
    display: block;
}

.profile.add-merchant .user-data.appear .group.file .add-imgs {
    left: auto;
    right: 130px;
}


.profile .user-data .group.file .add-imgs svg {
    width: 20px;
    height: 20px;
    fill: var(--second-color);
    position: relative;
    top: 8px;
}

.profile .user-data .group.file .add-imgs input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    opacity: 0;
}

.profile .img-box li {
    width: 24%;
    display: inline-block;
    position: relative;
    padding: 5px;
    margin: 10px 0;
}

.profile .img-box li img {
    width: 100%;
    height: 175px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.profile .img-box li .delete {
    position: absolute;
    bottom: 15px;
    right: 15px;
    border: 2px solid #fd1d1d;
    background: #fd1d1d;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 40px;
    box-shadow: 1px 1px 10px 5px rgba(255,255,255,0.8);
    transition: all .5s ease-in-out;
    display: none;
}

.profile .user-data.appear .img-box li .delete {
    display: block;
}


.profile .img-box li svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all .5s ease-in-out;
}

.profile .img-box li .delete:hover {
    background: transparent;
    box-shadow: none;
}

.profile .img-box li .delete:hover svg {
    fill: #fd1d1d;
}

.profile .user-data.appear button[type="submit"] {
    display: block;
}

.dashboard .show-details {
    margin-right: 15px;
}

.dashboard .delete {
    position: absolute;
    bottom: 15px;
    left: 15px;
    border: 2px solid #c72b3b;
    background: #c72b3b;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 40px;
    box-shadow: 1px 1px 10px 5px rgba(255,255,255,0.8);
    transition: all .5s ease-in-out;
}

.dashboard svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all .5s ease-in-out;
}

.dashboard .delete:hover {
    background: transparent;
    box-shadow: none;
}

.dashboard .delete:hover svg {
    fill: #c72b3b;
}

@media (max-width: 991px) {
    .profile .img-box li {
        width: 32%;
    }
    .providers .block-box .img-shine img {
        height: 185px;
    }
    .providers .block-box h2 {
        width: calc(100% - 90px);
    }
    .offer-details .info-box .map {
        position: static;
        margin-top: 25px;
        box-shadow: none;
    }

    .offer-details .info-box .map iframe {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .profile .user-data .group.two {
        width: 100%;
        float: none;
    }
    .profile .user-data input,
    .profile .user-data .nice-select {
        display: block;
        width: 100% !important;
    }
    .profile .nav-tabs li span {
        display: block;
    }
    .profile .img-box li {
        width: 49%;
    }
    .inner-slider .flickity-viewport {
        height: 320px !important;
    }
    .side-box {
        margin-bottom: 25px;
    }
    .providers .block-box .img-shine img {
        height: 300px;
    } 
}

@media (max-width: 400px) {
    .profile .img-box li {
        width: 100%;
    }
    .profile .block-box .img-shine img {
        height: 170px;
    }
    .inner-slider .flickity-viewport {
        height: 230px !important;
    }
    .providers .block-box .img-shine img {
        height: 220px;
    } 
}

/* -- ./User Dashboard -- */

/* -- Contact Us -- */

.contact-box {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 25px;
}

.contact-box .group {
    margin: 10px 0;
    position: relative;
}

.contact-box .group label {
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 13px;
}

.contact-box .group input,
.contact-box .group textarea {
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 5px 10px;
    outline: none;
    width: calc(100% - 110px);
    margin-right: 110px;
    transition: all .5s ease-in-out;
}

.contact-box .group input:focus,
.contact-box .group textarea:focus {
    border-color: var(--main-color);
}

.contact-box .group textarea {
    height: 200px;
    resize: none;
}

.contact-box .group button {
    display: block;
    margin: 15px auto;
    padding: 0 15px 10px;
    color: #fff;
    background: var(--gradient);
    border: 0;
    border-radius: 15px;
    outline: none;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.contact-box .group button svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    position: relative;
    top: 8px;
}

.contact-box .group button:hover {
    box-shadow: 1px 1px 10px 5px rgba(0,0,0,0.4);
}

.contact-info svg {
    width: 25px;
    height: 25px;
    fill: var(--second-color);
    margin-left: 5px;
    position: relative;
    top: 8px;
}

.contact-info li {
    color: var(--main-color);
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0;
}

@media (max-width: 500px) {
    .contact-box .group input, .contact-box .group textarea {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    .contact-box .group label {
        position: static;
    }
}

/* -- ./Contact Us -- */


/* -- About Us -- */

.about-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    padding: 15px;
}

.about-box .main-img {
    border-radius: 50%;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    width: 100px;
    height: 100px;
    float: left;
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
}

.about-box .sentence-box {
    justify-content: center;
    max-width: calc(100% - 200px);
    white-space: pre-line;
}

@media (max-width: 767px) {
    .about-box .sentence-box {
        max-width: 100%;
    }
}

/* -- ./About Us -- */




