/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    background-attachment: fixed;
    background-size: cover;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-in, .preloader-in2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 99;
    text-align: center;
    color: #fff;
}

.preloader-in .spinner {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    line-height: 100vh;
    pointer-events: none;
}

.preloader-in2 .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
}

html {
    background-color: var(--color-white);
}

body {
    background-color: var(--color-white);
    /*overflow-x: hidden;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ##### COMMONS ##### */
main {flex-grow: 1; position: relative; min-height: 50vh;}
.section-padding {padding-top: 50px; padding-bottom: 50px;}
.anchor {position: absolute; z-index: -1; top: -120px; display: block;}
body.is-mobile .sf-toolbar {display: none !important;}

/* ##### HEADER ##### */
.header {
    position: sticky;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--color-white);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
}
.header .i-main-logo {margin-right: 30px;}

.header .header-in1 {
    border-bottom: 1px solid var(--color-light-blue);
    padding: 5px 0;
    height: 50px;
    background: var(--color-white);
}

.header .header-in2 {
    height: 70px;
    background: var(--color-white);
}

/* header i-link */
.header .i-link {
    text-transform: uppercase;
    color: var(--color-gray);
    font-size: 14px;
    margin-left: 40px;
}
.header .i-link:hover, .header .i-link:focus {color: var(--color-default);}
.header .i-link .i-link-text {margin-left: 5px;}

/* header i-langue */
.header .i-langue img {border: 1px solid var(--color-gray); border-radius: 5px;}

/* header i-cart */
.header .bx-cart {margin-left: 40px;}
.header .bx-cart .i-main-btn {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-default);
    cursor: pointer;
    padding: 0 10px 0 7px;
    height: 35px;
    background: var(--color-gray2);
    border-radius: 5px;
    font-weight: 400;
}
.header .bx-cart .i-main-btn:hover {color: var(--color-default-hover);}
.header .bx-cart .i-main-btn .i-count {
    min-width: 25px;
    height: 25px;
    color: var(--color-white);
    font-size: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 23px;
    top: 1px;
}
.header .bx-cart .i-main-btn .i-ico {margin-right: 30px;}
.header .bx-cart .i-main-btn .i-price {margin-right: 10px;}

.header .bx-cart.show .i-info {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 250px);
    min-height: 200px;
}

.header .bx-cart .i-info table {margin-bottom: 0;}
.header .bx-cart .i-info table td {border: none;}
.header .bx-cart .i-info table td {border-bottom: 1px solid var(--color-gray2); vertical-align: middle; padding: 10px 5px;}
.header .bx-cart .i-info table tr:last-child td {border-bottom: none;}

.header .bx-cart .i-info .bx-scroll-y {
    width: 500px;
    margin-bottom: 5px;
    border-top: 1px solid var(--color-light-blue);
    border-bottom: 1px solid var(--color-light-blue);
    padding: 0 10px;
}

/* ##### ACCENTS highlighted ##### */
.i-highlighted-header {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    border-radius: 5px 5px 0 0;
    color: var(--color-white);
    background: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    text-transform: none;
}

.i-highlighted-footer {
    width: 100%;
    height: 12px;
    background: var(--color-primary);
    border-radius: 0 0 5px 5px;
}

/* #### BX-USER #### */
.bx-user {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    align-items: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.bx-user i {width: 1.25em; text-align: center;}

/* ##### BX-FIND-DOMAIN ##### */
.bx-find-domain {
    background: #000;
    display: flex;
    align-items: center;
    min-height: 280px;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.bx-find-domain::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: url("../../img/front/bg01.webp") no-repeat;
    background-size: cover;
    transform: scale(1.15);
    animation: domainBgAnimation 15s infinite alternate 1s;
}

@keyframes domainBgAnimation {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* #### BX-SWITCH-NET-GROSS #### */
.bx-switch-net-gross {
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: flex-end;
    margin: 20px 0;
}
.bx-switch-net-gross::before {
    content: '';
    height: 1px;
    width: 100%;
    background: var(--color-light-blue);
    position: absolute;
    left: 0;
    top: 50%;
}

.bx-switch-net-gross input {display: none;}

.bx-switch-net-gross label {
    position: relative;
    display: inline-flex;
    border: 1px solid var(--color-light-blue);
    background: var(--color-white);
    border-radius: 20px;
    padding: 4px;
    user-select: none;
}

.bx-switch-net-gross label::before {
    content: '';
    width: 110px;
    height: 30px;
    border-radius: 15px;
    background: var(--color-primary);
    position: absolute;
    z-index: 10;
    left: 4px;
    top: 4px;
    transition: left 0.2s ease-in-out;
}
.bx-switch-net-gross input[type="checkbox"]:checked + label:before {left: 114px;}

.bx-switch-net-gross .i-btn {
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: transparent;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 11;
    border-radius: 15px;
    transition: color 0.2s ease-in-out;
    overflow: hidden;
}

.bx-switch-net-gross .i-btn:last-child {color: var(--color-heading);}
.bx-switch-net-gross input[type="checkbox"]:checked + label .i-btn {color: var(--color-heading);}
.bx-switch-net-gross input[type="checkbox"]:checked + label .i-btn:last-child {color: var(--color-white);}

/* ##### BX-BORDER ##### */
.bx-border {
    border: 1px solid var(--color-light-blue);
    border-radius: 5px;
    padding: 40px;
    margin-bottom: 30px;
    width: 100%;
}

/* ##### BX-INFO ##### */
.bx-info {
    border-radius: 5px;
    padding: 20px;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    width: 100%;
}

.bx-info .i-ico {margin: 0 20px 0 0; min-width: 30px;}

.bx-info.v2 {flex-direction: column; justify-content: center; text-align: center;}
.bx-info.v2 .i-ico {margin: 0 0 20px 0;}

/* ##### BX-WHY-US ##### */
.bx-why-us {
    border: 1px solid var(--color-light-blue);
    border-radius: 5px;
    padding: 30px 20px;
    width: 100%;
    text-align: center;
}
.bx-why-us .i-ico {height: 50px; line-height: 50px; margin-bottom: 30px;}
.bx-why-us p {margin: 0;}

/* ##### BX-IMG-WITH-DESC ##### */
.bx-img-with-desc {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}
a.bx-img-with-desc {color: var(--color-default);}

.bx-img-with-desc img {width: 100%; object-fit: cover; max-height: 410px;}
.bx-img-with-desc .i-desc {
    position: absolute;
    left: 0;
    bottom: 45px;
    width: calc(100% - 30px);
    background: rgba(255, 255, 255, .95);
    padding: 20px 30px;
}

.bx-img-with-desc .i-desc .i-btn {
    position: absolute;
    right: 20px;
    bottom: -20px;
}

/* ##### BX-BORDER-WITH-DOT ##### */
.bx-border-with-dot {
    border: 1px solid var(--color-secondary-hover);
    background: var(--color-white);
    border-radius: 5px;
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-top: 10px;
    width: 100%;
}
.bx-border-with-dot::before {
    content: '';
    position: absolute;
    left: 20px;
    top: -10px;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ##### BX-BORDER-WITH-DOT2 ##### */
.bx-border-with-dot2 {
    border: 1px solid var(--color-secondary-hover);
    background: var(--color-white);
    color: var(--color-default);
    border-radius: 5px;
    padding: 25px 25px 25px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
}
.bx-border-with-dot2::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 32px;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ##### BX-ACCORDION ##### */
.bx-accordion {
    border: 1px solid var(--color-blue);
    padding: 15px 20px 15px 30px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.bx-accordion .i-accordion-opener {
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
}
.bx-accordion .i-accordion-opener:hover, .bx-accordion .i-accordion-opener:focus, .bx-accordion .i-accordion-opener[aria-expanded='true'] {color: var(--color-secondary-hover);}

.bx-accordion .i-accordion-opener i {margin-right: 10px; transition: all 0.2s ease-in-out; color: var(--color-primary);}
.bx-accordion .i-accordion-opener[aria-expanded='true'] i {transform: rotate(180deg);}
.bx-accordion .i-accordion-desc:not(.show) {height: 0; transition: height 0.3s ease-in-out;}
.bx-accordion .i-accordion-desc {height: 100%; overflow: hidden;}

/* ##### BX-SPECIAL-BLOCK ##### */
.bx-special-block {
    border: 1px solid var(--color-light-blue);
    border-radius: 5px;
    width: 100%;
}

.bx-special-block .bx-special-block-in1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-light-blue);
    background: var(--color-gray2);
}
.bx-special-block .bx-special-block-in2 {
    padding: 12px 20px;
}

/* ##### BX-VIDEO-WRAPER ##### */
.bx-video-wraper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.bx-video-wraper iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}

/* ##### BX-PARTNERS ##### */
.bx-partners .slick-list {margin: 0 25px;}
.bx-partners .slick-track {
    display: flex;
    align-items: stretch;
    height: 60px;
    justify-content: center;
}

.bx-partners .i-logo {
    margin: 0 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bx-partners .i-logo img {display: inline; max-height: 100%; max-width: 120px;}
.bx-partners .i-logo img:hover {opacity: 0.9;}

/* ##### BX-HOSTING-TOOLS ##### */
.bx-hosting-tools {display: flex; flex-wrap: wrap; margin-bottom: 20px;}
.bx-hosting-tools .item {padding: 10px; text-align: center; font-weight: 700; font-size: 14px; color: var(--color-heading); width: 125px;}
.bx-hosting-tools .item .i-ico {height: 50px; line-height: 50px; margin-bottom: 10px;}

/* ##### BX-PRODUCT ##### */
.bx-product {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: relative;
}
.bx-product .i-desc {flex-grow: 1; display: flex; flex-direction: column;}
.bx-product .i-desc .i-desc-in {flex-grow: 1; margin-top: 10px;}

.bx-product .i-desc-in .i-logo {height: 30px; display: flex; align-items: center; margin-bottom: 15px;}

.bx-product .i-table-attr {font-size: 14px; margin-bottom: 0;}
.bx-product .i-table-attr td, .bx-product .i-table-attr th {border: none; padding-top: 10px; padding-bottom: 10px; vertical-align: middle;}
.bx-product .i-table-attr th {font-weight: 400; padding-right: 5px;}
.bx-product .i-table-attr td {font-weight: 700; text-align: right; padding-left: 5px; min-width: 80px;}

.bx-product .i-highlighted-header {position: relative; left: 0; top: 0;}
.bx-product .i-highlighted-footer {position: absolute; left: 0; bottom: -8px;}

.bx-product.v-on-list .i-highlighted-header {position: absolute; top: -38px;}

/* ##### BX-PRODUCTS-SLICK ##### */
.bx-products-slick {display: flex; align-items: center; padding-bottom: 40px;}
.bx-products-slick .slick-list {flex-grow: 1; margin: 0 -10px; padding-top: 35px;}
.bx-products-slick .slick-track {display: flex; margin: 0 auto;}
.bx-products-slick .slick-prev {left: 0; margin: 0 10px 0 -7px; position: inherit;}
.bx-products-slick .slick-next {right: 0; margin: 0 -7px 0 10px; position: inherit;}
.bx-products-slick ul.slick-dots {position: absolute; bottom: 0;}
.bx-products-slick .item {padding: 10px; display: flex; height: auto;}

/* ##### BX-MY-SERVICE ##### */
.bx-my-service {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--color-light-blue);
    padding: 10px 15px;
}

.bx-my-service .i-in2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bx-my-service .i-in1 {
    display: flex;
    justify-content: space-between;
}

.bx-my-service.v-off {
    color: var(--color-gray);
}
.bx-my-service.v-off .i-in2 {opacity: 0.7}

/* ##### BX-PAYMENT-TYPE ##### */
.bx-payment-type {
    position: relative;
}

.bx-payment-type input {
    position: absolute;
    height: 1px;
    width: 1px;
    left: 0;
    top: 0;
    opacity: 0;
}

.bx-payment-type .i-label {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-white);
    border-radius: 5px;
    border: 2px solid var(--color-light-blue);
    padding: 20px 10px 30px 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.bx-payment-type input:checked + .i-label, .bx-payment-type .i-label:hover {
    border-color: var(--color-secondary);
}

.bx-payment-type .i-logo {
    text-align: center;
    margin-bottom: 10px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bx-payment-type .i-btn {
    background-color: var(--color-white);
    text-align: center;
    color: var(--color-secondary);
    font-size: 16px;
    line-height: 1.3;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--color-secondary);
    width: 100%;
    border-radius: 5px;
}

.bx-payment-type input:checked + .i-label .i-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.bx-payment-type input:checked + .i-label .i-btn::before {
    font-family: "Font Awesome 5 Pro";
    content: '\f058';
    display: inline;
    font-weight: 700;
    margin: 0 10px 0 0;
}
.bx-payment-type .i-btn .i-btn-text-2 {display: none;}
.bx-payment-type input:checked + .i-label .i-btn .i-btn-text-1 {display: none;}
.bx-payment-type input:checked + .i-label .i-btn .i-btn-text-2 {display: inline;}


.bx-payment-type .i-label .i-checkbox {
    visibility: hidden;
    position: absolute;
    left: 15px;
    bottom: 7px;
    white-space: nowrap;
}
.bx-payment-type input:checked + .i-label .i-checkbox {
    visibility: visible;
}

.bx-payment-type input:focus + .i-label .i-btn {
    animation-name: pulse;
    animation-duration: .7s;
}

.bx-payment-type .i-label .i-price {
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: var(--color-primary);
    font-weight: 700;
}


/* ##### PAGINATION ##### */
.pagination {display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; padding: 20px 0; margin: 0;}

.pagination .page-link {
    display: block;
    text-align: center;
    border-radius: 5px;
    color: var(--color-secondary);
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 2px;
    font-size: 14px;
    font-weight: 700;
}

.pagination .active .page-link, .pagination .page-link:hover, .pagination .page-link:focus {background: var(--color-gray3);}
.pagination .active .page-link {background: var(--color-primary); color: var(--color-white);}

.pagination .page-item {margin: 0;}
.pagination .page-item::before {content: none !important;}
.pagination .page-item:last-child .page-link {margin-right: 0;}
.pagination .page-item:first-child .page-link {margin-left: 0;}

/* ##### CART-STEP ##### */
ul.cart-step {
    text-align: center;
    margin: 30px auto;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 800px;
    max-width: 100%;
}

ul.cart-step li {
    display: block;
    font-size: 14px;
    margin: 0;
    padding: 0 15px;
    width: 33.3332%;
    position: relative;
    z-index: 10;
    color: var(--color-secondary);
    font-weight: 700;
}
ul.cart-step li::before {display: none !important;}

ul.cart-step li:after {
    content: '';
    height: 2px;
    width: 100%;
    background: var(--color-secondary);
    position: absolute;
    top: 18px;
    left: 0;
}

ul.cart-step li:first-child:after {left: 50%; width: 60%;}
ul.cart-step li:last-child:after {left: auto; right: 50%; width: 60%;}
ul.cart-step li a {
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
}

ul.cart-step li .i-ico {
    display: flex;
    width: 120px;
    min-width: 80px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    margin: 0 auto 15px auto;
    position: relative;
    z-index: 11;
}
ul.cart-step li.done .i-ico, ul.cart-step li.active .i-ico {
    color: var(--color-primary);
}

ul.cart-step li .i-text {max-width: 120px; display: inline-block;}

/* ##### BX-LOGIN-AS-ADMIN ##### */
.bx-login-as-admin {
    position: fixed;
    font-size: 13px;
    z-index: 99;
    left: 10px;
    bottom: 10px;
    color: #fff;
    background: #ff9600;
    padding: 5px 10px;
    border-radius: 5px;
}

/* ##### TABLE ##### */

/* TABLE-SM */
.table-sm th, .table-sm td {padding: 10px 10px; font-size: 14px;}

/* TABLE-CLEAR */
.table-clear th, .table-clear td {border: none !important;}

/* TABLE-STRIPED */
.table-striped tr:nth-child(odd) {background-color: var(--color-light-blue);}

/* TABLE-ATTR */
.table-attr th, .table-attr td {min-width: 150px; vertical-align: middle;}
.table-attr th {width: 300px; font-weight: 400;}
.table-attr td {font-weight: 700;}

/* TABLE-PRICES-DOMAIN */
.table-prices-domain th, .table-prices-domain td {padding: 10px; min-height: 50px; text-align: center; vertical-align: middle;}
.table-prices-domain tr th:last-child, .table-prices-domain tr td:last-child {padding: 10px;}
.table-prices-domain tr th:first-child, .table-prices-domain tr td:first-child {padding: 10px;}

/* TABLE-BUY-DOMAINS */
.table-buy-domains td, .table-buy-domains th {vertical-align: middle; text-align: center;}
.table-buy-domains th {text-align: left; width: 700px;}
.table-buy-domains .i-btn-add-to-cart {width: 200px;}

/* TABLE-HOVER */
.table-hover tbody tr:hover th, .table-hover tbody tr:hover td {background-color: rgba(0,0,0,.075);}
.table-hover tbody tr:hover th, .table-hover tbody tr:hover td {background-color: rgba(0,0,0,.075);}

/* TABLE-TH-MOBILE */
.table-th-mobile th.i-th-mobile {
    text-align: left !important;
    font-weight: 700 !important;
    padding: 5px 10px !important;
    font-size: 14px !important;
    border: none !important;
    border-bottom: 1px solid var(--color-light-blue) !important;
    min-height: auto;
}
.table-th-mobile th.i-th-mobile .i-th-mobile-text {position: sticky; left: 5px; !important}

/* TABLE-COMPARE */
.table-compare {
    padding-top: 40px;
    width: 100%;
    overflow: inherit;
    position: relative;
}
.table-compare td,
.table-compare th {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    min-width: 160px;
    vertical-align: middle;
    padding: 15px;
    border-left: none;
}
.table-compare td:first-child,
.table-compare th:first-child {
    border: none;
    text-align: right;
    font-weight: 400;
    padding-right: 30px;
    min-width: 270px;
}

.table-compare th {font-weight: normal; font-size: 16px;}
.table-compare thead th {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.table-compare .i-highlighted-br {
    border: 1px solid var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.table-compare .i-highlighted-header {
    position: absolute;
    left: -1px;
    top: -38px;
    width: calc(100% + 2px);
}

.table-compare .i-highlighted-footer {
    position: absolute;
    left: -1px;
    bottom: -12px;
    width: calc(100% + 2px);
}

.table-compare th.i-th-mobile {
    text-align: left;
    font-weight: 700;
    padding: 7px 10px;
    font-size: 14px;
    border-top: 1px solid var(--color-light-blue);
    border-bottom: 1px solid var(--color-light-blue);
}
.table-compare th.i-th-mobile .i-th-mobile-text {position: sticky; left: 5px;}



/* ##### ICO-GO-TOP ##### */
.ico-go-top {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: var(--color-primary);
    position: fixed;
    z-index: 88;
    right: 15px;
    bottom: 15px;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
body.chat-application-enabled .ico-go-top {right: 95px; bottom: 20px;}
body.is-mobile.chat-application-enabled .ico-go-top {right: 70px; bottom: 22px;}

.ico-go-top::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -8px;
}
.ico-go-top:hover {background-color: var(--color-primary-hover);}

/* #### FOOTER #### */
.footer {
    background-color: var(--color-white);
    position: relative;
}

.footer .footer-in1 {
    padding: 30px 0;
    border-top: 1px solid var(--color-light-blue);
}

.footer .footer-in2 {
    padding: 30px 0 80px 0;
    border-top: 1px solid var(--color-light-blue);
    border-bottom: 5px solid var(--color-primary);
}
.is-mobile .footer .footer-in2 {padding-bottom: 60px}

.footer .i-menu {text-align: center; margin: 0; text-transform: uppercase;}
.footer .i-menu a {margin: 3px 10px; color: inherit;}
.footer .i-menu a:hover {color: var(--color-primary);}

.footer .i-social {text-align: center; margin: 25px 0 0 0;}
.footer .i-social a {font-size: 32px; margin: 3px 15px;}

/* ##### COOKIES MESSAGE ##### */
#cookies-message {
    padding: 5px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    background-color: var(--color-gray2);
    width: 100%;
    z-index: 999;
    box-shadow: 0 10px 10px 8px #000000;
}

/* #### RESPONSIBLE WEB DESIGN #### */
@media all and (max-width: 1299px) {

}

@media all and (max-width: 1199px) {

}

@media all and (max-width: 991px) {
    /* ##### COMMONS ##### */
    .section-padding {padding-top: 30px; padding-bottom: 30px;}
    .anchor {top: -75px;}

    /* ##### HEADER ##### */
    .header .header-in1 {height: 35px;}
    .header .header-in2 {height: 40px; border-bottom: 1px solid transparent;}
    .header .i-main-logo {margin: -2px 10px 0 0;}
    .header .i-main-logo img {height: 20px;}

    /* header i-link */
    .header .i-link {font-size: 13px; display: flex; align-items: center; justify-content: center; margin: 0 10px 0 0;}
    .header .i-profil .i-link {margin-right: 0;}

    /* header i-langue */
    .header .i-langue {display: none;}

    /* ## header i-cart ## */
    .header .bx-cart {position: absolute; right: 40px; top: 38px;}
    .header .bx-cart .i-main-btn {font-size: 13px; display: flex; align-items: center; justify-content: center; background: none;}
    .header .bx-cart .i-main-btn .i-ico {margin: 0;}
    .header .bx-cart .i-main-btn .i-count {position: relative; left: -3px; top: -2px; min-width: 20px; height: 20px; margin-right: 2px;}
    .header .bx-cart .i-main-btn .i-price {display: none;}
    .header .bx-cart.show .i-info {max-height: calc(100vh - 200px);}
    .header .bx-cart .i-info .bx-scroll-y {width: 300px;}
    .header .bx-cart table tr td:first-child {width: 80px; padding: 10px 5px;}

    body.open-menu {padding-top: 75px;}
    body.open-menu .header .header-in1 {position: fixed; z-index: 999; left: 0; top: 0; width: 100%; border-bottom-color: var(--color-light-blue);}
    body.open-menu .header .header-in2 {position: fixed; left: 0; top: 35px; width: 100%; border-bottom-color: var(--color-light-blue);}
    body.open-menu .header .i-main-logo {position: relative; z-index: 999;}
    body.open-menu .header .i-langue {position: fixed; display: block; bottom: 10px; right: 10px;}
    body.open-menu .sf-toolbar {display: none !important;}

    /* ##### BX-BORDER ##### */
    .bx-border {padding: 15px; margin-bottom: 15px;}

    /* ##### BX-WHY-US ##### */
    .bx-why-us {padding: 15px;}

    /* ##### BX-IMG-WITH-DESC ##### */
    .bx-img-with-desc .i-desc {bottom: 25px; width: calc(100% - 20px); padding: 15px;}

    /* ##### BX-BORDER-WITH-DOT ##### */
    .bx-border-with-dot {padding: 25px 15px 15px 15px; margin-top: 0;}
    .bx-border-with-dot::before {left: 15px; top: -7px; width: 15px; height: 15px;}

    /* ##### BX-BORDER-WITH-DOT2 ##### */
    .bx-border-with-dot2 {padding: 15px 15px 15px 30px;}
    .bx-border-with-dot2::before {left: 12px; top: 21px; width: 8px; height: 8px;}

    /* ##### BX-INFO ##### */
    .bx-info {padding: 15px;}
    .bx-info .i-ico {margin-right: 15px;}
    .bx-info.v2 .i-ico {margin-bottom: 15px;}

    /* ##### BX-ACCORDION ##### */
    .bx-accordion {padding: 10px;}
    .bx-accordion .i-accordion-opener {font-size: 16px;}

    /* ##### BX-SPECIAL-BLOCK ##### */
    .bx-special-block .bx-special-block-in1 {padding: 10px;}
    .bx-special-block .bx-special-block-in2 {padding: 10px;}

    /* TABLE-BUY-DOMAINS */
    .table-buy-domains tr {border-bottom: 1px solid var(--color-light-blue);}
    .table-buy-domains tr:last-child {border-bottom: none;}
    .table-buy-domains th, .table-buy-domains td {border-bottom: none;}
    .table-buy-domains th {width: 50% !important;}
    .table-buy-domains td {display: block; width: 100% !important; border-left: none; padding-left: 10px !important; padding-right: 10px !important}
    .table-buy-domains td:nth-child(3) {padding-top: 0; padding-bottom: 0;}
    .table-buy-domains .i-btn-add-to-cart {width: auto;}

    /* ##### BX-PAYMENT-TYPE ##### */
    .bx-payment-type .i-label {padding-top: 10px ;}
    .bx-payment-type .i-btn {height: 35px; font-size: 14px;}

    /* ##### TABLE-RWD ##### */
    .table-rwd th {display: none !important;}
    .table-rwd td {display: block !important; width: auto!important; position: relative; border: none !important; border-bottom: 1px solid var(--color-light-blue) !important; padding: 10px !important; padding-left: calc(40% + 10px) !important; text-align: left !important; min-height: 40px;}
    .table-rwd td::before {
        content: attr(data-th) ": ";
        position: absolute;
        left: 0;
        top: 0;
        border-right: 1px solid var(--color-primary);
        height: 100%;
        width: 40%;
        text-align: right;
        color: var(--color-heading);
        font-weight: 600;
        padding: 10px;
        background: var(--color-gray2);
        white-space: normal;
    }
    .table-rwd.table-align-midle td::before {display: flex; align-items: center; justify-content: flex-end;}

    .table-rwd tr {border-bottom: 3px solid var(--color-light-blue); border-top: 1px solid var(--color-light-blue);}
    .table-rwd.table-cart .bx-input-number {justify-content: flex-start;}

    /* ##### ICO-GO-TOP ##### */
    .ico-go-top {width: 35px; height: 35px;}
    body.chat-application-enabled .ico-go-top {bottom: 28px;}
    .ico-go-top::after {width: 10px; height: 10px; margin: -3px 0 0 -5px;}

    /* ##### COOKIES MESSAGE ##### */
    #cookies-message-container {display: none;}
}

@media all and (max-width: 767px) {

    /* ##### BX-HOSTING-TOOLS ##### */
    .bx-hosting-tools {justify-content: center;}

    /* ##### CART-STEP ##### */
    ul.cart-step li {font-size: 11px; padding: 0 10px;}
    ul.cart-step li .i-ico {width: auto}

    /* ##### TABLE-ATTR ##### */
    .table-attr th {width: 50%;}

    /* ##### TABLE-COMPARE ##### */
    .table-compare td, .table-compare th {padding: 10px 5px; min-width: 100px;}
    .table-compare thead th {font-size: 14px;}

    /* TABLE-COMPARE */
    .table-compare td {font-weight: 400;}

    /* #### FOOTER #### */
    .footer .i-menu a {margin: 3px 5px;}
}

@media all and (max-width: 575px) {

}

@media all and (max-width: 479px) {
    /* ##### HEADER ##### */
    /* header i-link */
    .header .i-link {font-size: 12px; margin: 0 5px 0 0;}
    /* ## header i-cart ## */
    .header .bx-cart .i-info .bx-scroll-y {width: 280px;}

    /* ##### ICO-GO-TOP ##### */
    body.chat-application-enabled .ico-go-top {right: 70px; bottom: 22px;}
}

@media all and (max-width: 340px) {

}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {

}

