/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

@font-face {
    font-family: Gilroy;
    src: url("/fonts/Gilroy-ExtraBold.otf") format("opentype");
    font-style: bold;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: Gilroy;
    src: url("/fonts/Gilroy-Light.otf") format("opentype");
    font-style: light;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: Gilroy;
    src: url("/fonts/Gilroy-Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy-Medium";
    src: url("/fonts/Gilroy-Medium.otf") format("opentype");
    font-display: swap;
}

html, body {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    color: #303030;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
}

.content-wrapper, .centered {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.content-wrapper * {
    z-index: 1;
    position: relative;
}

.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 555;
    padding: 16px 0 18px;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header.fixed {
    background: #FFF;
    -webkit-box-shadow: 0px 10px 32px 0px #0000000d;
    box-shadow: 0px 10px 32px 0px #0000000d;
}

.header .menu-toggle {
    width: 18px;
    height: 18px;
    color: #303030;
    float: left;
    text-align: center;
    position: relative;
    margin: 8px 15px 0 0px;
    display: none;
}

.header-buttons {
    /*position: relative;*/
}

.header .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #303030;
    display: inline-block;
}

.header .menu-toggle span:after, .header .menu-toggle span:before {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    background: #303030;
}

.header .menu-toggle span:after {
    bottom: -4px;
}

.header .menu-toggle span:before {
    top: 9px;
}

.header .logo {
    float: left;
    width: 110px;
    height: 45px;
    background: url(/images/logo.svg) center center no-repeat;
    background-size: contain;
}

.header .main-menu-wrapper .logo {
    margin-left: 24px;
}

.header .main-menu-wrapper .menu-toggle-cross {
    margin: 15px 5px;
    width: 13px;
    height: 13px;
    cursor: pointer;
}

.header .right-side .main-menu {
    padding-left: 32px;
}

.header .right-side .main-menu {
    list-style: none;
}

.header .right-side .main-menu > li a {
    color: #2a3946;
    text-decoration: none;
    text-transform: uppercase;
}

.header .right-side .main-menu > li {
    float: left;
    margin: 0px 21px;
    position: relative;
    font-size: 12px;
    color: #2a3946;
}

.header .right-side .main-menu > li .sub-menu-toggle {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: 0;
    line-height: 20px;
    text-align: center;
}

.header .right-side .main-menu > li:hover .sub-menu-holder {
    visibility: visible;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    margin-top: 0;
}

.header .right-side .main-menu > li .sub-menu-holder li a {
    text-transform: none;
}

.header .right-side .main-menu > li .sub-menu-holder {
    position: absolute;
    z-index: 5;
    top: 100%;
    left: 72%;
    margin-left: -71px;
    margin-top: 5px;
    padding: 15px 0 0 0;
    -o-transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -webkit-transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    visibility: hidden;
}

.header .right-side .main-menu > li .sub-menu-holder .sub-menu li a {
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    color: #303030;
}

.header .right-side .main-menu > li .sub-menu-holder .sub-menu {
    background: #fff;
    min-width: 350px;
    position: relative;
    list-style: none;
}

.header .right-side .main-menu > li.has-menu {
    padding-right: 5px;
}

.header .right-side .main-menu > li.has-menu::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -7px;
    width: 3px;
    height: 3px;
    border: 3px solid transparent;
    border-top-color: #2a3946;
}

.header .right-side {
    margin: 2px 0 0 0;
    padding-right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .menu-item-home {
    display: none;
}

.no-text-transform {
    text-transform: none !important;
}

.show-on-xsmall, .show-on-small {
    display: none;
}

.top-wrapper {
    display: none;
}

.title {
    font-family: 'Gilroy', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.44;
    color: #303030;
    margin-bottom: 30px;
    text-align: center;
}

h1.title {
    font-size: 44px;
    text-align: left;
    font-family: Gilroy, sans-serif;
}

h2.title {
    font-family: 'Gilroy', sans-serif;
    max-width: 584px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

h3.title {
    font-family: Montserrat, sans-serif;
    font-size: 26px;
    text-align: left;
    line-height: 1.62;
    margin-bottom: 24px;
    font-weight: 800;

}

h4.title {

    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #303030;
}

h5.title {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 2px;
    text-align: center;
}

h3.title-big {
    text-align: center;
    font-family: Gilroy, sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.41;
    max-width: 820px;
    margin: 140px auto 50px;
}

footer {
    text-align: center;
    margin-top: 200px;
    padding-top: 47px;
    padding-bottom: 30px;
    position: relative;
}

.description {
    font-family: Gilroy, sans-serif;
    font-weight: 300;
    max-width: 426px;
    line-height: 1.75;
    color: #303030;
    margin-bottom: 24px;
    font-size: 16px;

}

.text-annotation {
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: normal;
    color: #9c9c9f;
    max-width: 482px;
    margin-top: -13px;
}

footer > hr {
    border-top: solid 1px #e0e4e9;
    margin: 0 -5%;
    position: relative;
    z-index: 100;
    width: 110%;
    top: -47px;
}

.footer-menu-column {
    margin-bottom: 37px;
}

.footer-menu-column-1 {
    width: 200px
}

.footer-menu-column a:hover {
    text-decoration: underline;
    text-decoration-color: #303030;
    text-underline-offset: 3px;
}

footer .ul-menu {
    list-style-type: none;
    -webkit-padding-start: 0px;
    padding-inline-start: 0px;
    text-align: left;
}

footer .menu-title {
    text-align: left;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 2px;
    color: #343434;
    margin-bottom: 8px;
}

footer .menu-item a {
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.88;
    letter-spacing: normal;
    color: #303030;
    text-decoration: none;
}

footer .menu-item a:hover:after {
    opacity: .8;
    bottom: -2px;
    left: 0px;
}

.logo-footer {
    display: inline-block;
    float: left;
    margin-right: 57px;
    width: 105px;
    margin-bottom: 22px;
}

.button-description-wrapper .btn {
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.5px;
    text-align: center;
    color: #ffffff;
    line-height: 2.5;
}

.button-description-wrapper {
    width: 240px;
    display: inline-block;
}

.button-description-wrapper .text {
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    margin-bottom: 18px;
    font-family: Gilroy;
    font-style: normal;
    font-weight: 300;
    line-height: 19px;
    color: #6C8092;
}

.copyright {
    font-weight: 300;
    color: #6C8092;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    text-align: left;
}

.terms {
    display: none;
}

.second-section .background-image.path-2 {
    top: 237px;
    left: -20px;
    right: 0;
    bottom: 0;
    height: auto;
    max-width: none;
    min-width: calc(100% + 30px);
}

.gradient-grey-white {
    position: absolute;
    top: 100px;
    left: 0;
    right: -30px;
    bottom: 0;
    height: 120%;
    background-image: -o-linear-gradient(bottom, #ffffff, #f6f7f8);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#f6f7f8));
    background-image: linear-gradient(to top, #ffffff, #f6f7f8);
}

img {
    max-width: 100%;
}

.terms {
    font-size: 12px;
}

.terms a {
    font-weight: 300;
    color: #2282d4;
}

.btn {
    -webkit-box-shadow: none;
    font-family: 'Montserrat', sans-serif;
    box-shadow: none;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 2;
    padding: 8px 24px;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1) !important;
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1) !important;
    transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1) !important;
}

.btn::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 100%;
    margin: -15px 0 0 1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s !important;
    transition: opacity 0.3s, -webkit-transform 0.3s !important;
    -o-transition: transform 0.3s, opacity 0.3s !important;
    transition: transform 0.3s, opacity 0.3s !important;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s !important;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1) !important;
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1) !important;
    transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1) !important;
}

.btn:hover::before {
    -webkit-transform: scale3d(13, 11, 1);
    transform: scale3d(13, 11, 1);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.btn.focus, .btn:focus, .btn:active {
    outline: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .btn-success, .btn-success:hover {
    background-color: #1bb869;
    border-color: transparent;
}

.btn-success::before {
    background-color: #00a060;
}

.btn-midwide {
    padding-left: 40px;
    padding-right: 40px;
}

.btn-white {
    background-color: transparent;
    border-color: transparent;
    color: #2a3946;
    font-weight: 400;
}

.btn-white::before {
    background-color: #e7e9ea;
}

.btn-grey {
    background-color: #6c8092;
    border-color: transparent;
    color: #FFF;
    font-weight: 400;
}

.btn-grey:hover {
    color: #303030;
}

.btn-grey::before {
    background-color: #e7e9ea;
}

.btn-round {
    border-radius: 50px;
}

.btn-big {
    padding: 13px 60px;
}

.btn-middle {
    padding: 8px 40px;
}

.btn-small {
    padding: 2px 10px;
}

.btn-narrow {
    padding-left: 30px;
    padding-right: 30px;
}

.btn-stroke {
    border: 1px solid #1bb869;
    background-color: transparent;
    color: #2a3946;
}

.button-description {
    font-size: 14px;
    font-weight: 300;
    margin-top: 30px;
    font-style: italic;
    color: #5e6b72;
    padding-left: 9px;
}

.btn-no-hover:hover {
    color: #fff;
    cursor: auto !important;
}

.btn-no-hover:before {
    content: none;
}

.btn-with-arrow:hover {
    text-decoration: none;
    color: #303030;
    cursor: pointer;
}

.btn-with-arrow:hover:after {
    right: 0px;
}

.btn-with-arrow:after {
    content: "";
    background-image: url(/images/svg/arrow-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 13px;
    position: absolute;
    right: 8px;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    top: 7px;
}

.btn-with-arrow {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    color: #2a3946;
    text-decoration: none;
    position: relative;
    padding-right: 30px;
    display: inline-block;
}

.pl-30 {
    padding-left: 30px;
}

.white-block {
    padding: 37px 55px;
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 27px 76px 0 #ecf0f2;
    box-shadow: 0 27px 76px 0 #ecf0f2;
    border: solid 3px #ecf0f2;
}

.white-block-image {
    max-width: 260px;
    margin-top: 20px;

}

.mr-24 {
    margin-right: 24px;
}

.block-centered{
    margin-left: auto;
    margin-right: auto;
}

section .background-image {
    position: absolute;
}

.first-section {
    padding-top: 153px;
}

body {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;

}

section {
    position: relative;
    margin-bottom: 120px;
}

.checkbox-switcher-wrapper * {
    -webkit-transition: 0.15s all ease-in-out;
    -o-transition: 0.15s all ease-in-out;
    transition: 0.15s all ease-in-out;
}

.checkbox-switcher-wrapper .switcher-text {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 2;
    letter-spacing: 1.5px;
    color: #91979d;
    cursor: pointer;
    text-transform: uppercase;

}

.checkbox-switcher-wrapper .switcher-oval {
    width: 40px;
    height: 19px;
    border-radius: 9.5px;
    border: solid 1px #dadadb;
    background-color: #f1f1f1;
    position: relative;
    margin-bottom: -0.1rem;
    margin-left: 15px;
    margin-right: 15px;
    cursor: pointer;
}

.checkbox-switcher-wrapper .switcher-oval:after {
    width: 19px;
    height: 19px;
    background-color: #1bb869;
    position: absolute;
    border-radius: 50%;
    left: -0.05rem;
    top: -0.07rem;
    content: '';
    -webkit-transition: 0.15s all ease-in-out;
    -o-transition: 0.15s all ease-in-out;
    transition: 0.15s all ease-in-out;
}

[type=checkbox].checkbox-switcher {
    display: none;
}

.checkbox-switcher-wrapper [type=checkbox]:checked ~ .switcher-oval:after {
    left: 1.25rem;
    right: -0.1rem;
}

.checkbox-switcher-wrapper [type=checkbox]:checked ~ .right-text {
    font-weight: 600;
    color: #2a3946;
}

.checkbox-switcher-wrapper [type=checkbox]:not(:checked) ~ .left-text {
    font-weight: 600;
    color: #2a3946;
}

.no-select:not(input):not(textarea) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bold {
    font-weight: bold !important;

}

ul.ul-checked {
    list-style-type: none;
    -webkit-padding-start: 0px;
    padding-inline-start: 0px;
}

ul.ul-checked > li {
    padding: 14px 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.38;
    letter-spacing: normal;
    color: #303030;
}

ul.ul-checked > li:before {
    content: '✔';
    position: absolute;
    top: 14px;
    left: -27px;
    color: #2a3946;
}

ul.ul-black-dots li {
    padding: 7px 0 0px 50px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.38;
    letter-spacing: normal;
    color: #303030;
}

ul.ul-black-dots {
    list-style-type: none;
    -webkit-padding-start: 0px;
    padding-inline-start: 0px;
}

ul.ul-black-dots > li:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 30px;
    color: #2a3946;
    width: 5px;
    height: 5px;
    background-color: #2a3946;
    border-radius: 50%;
}

.ordered-list {
    position: relative;
    padding-bottom: 53px;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.75;
    letter-spacing: normal;
    padding-left: 49px;
    padding-right: 0;
}

.ordered-list:before {
    content: '1';
    position: absolute;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #2282d4;
    left: 16px;
    top: 3px;
    border-right: 2px solid #2282d4;
    height: 26px;
    padding-right: 7px;
    padding-top: 3px;
}

.ordered-list-1:before {
    content: '1';
}

.ordered-list-2:before {
    content: '2';
}

.ordered-list-3:before {
    content: '3';
}

.ordered-list-4:before {
    content: '4';
}

.ordered-list-5:before {
    content: '5';
}

.ordered-list-6:before {
    content: '6';
}

.ordered-list-7:before {
    content: '7';
}

.ordered-list-8:before {
    content: '8';
}

.ordered-list-9:before {
    content: '9';
}

.ordered-list-10:before {
    content: '10';
}

.ordered-list .title {
    text-align: left;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    margin-bottom: 23px;
}

.icon-list {
    padding-left: 50px;
    padding-bottom: 20px;
}

.icon-list > img {
    position: absolute;
    left: 13px;
    top: 7px;
}

.big-white-block-wrapper {
    border-radius: 8px;
    border: solid 3px #ecf0f2;
    background-color: #ffffff;
    padding: 60px 90px;
}

.big-white-block-wrapper > img {
    border-radius: 50%;
    width: 189px;
    height: 189px;
    float: left;

}

.big-white-block-wrapper > .text-wrapper {
    padding-left: 100px;
    float: right;
    display: inline-block;
    width: calc(100% - 189px);
}

.big-white-block-wrapper > .text-wrapper > .title {
    text-align: left;
    margin-left: 0;
    margin-bottom: 0;
}

.big-white-block-wrapper > .text-wrapper > .text {
    margin-top: 20px;
    padding-bottom: 7px;
}

.text {
    font-family: Gilroy, sans-serif;
    font-weight: 300;
}

.sumome-react-wysiwyg-component.sumome-react-wysiwyg-popup-background.sumome-react-wysiwyg-background > div > div {
    border-radius: 6px !important;
}

.sumome-react-wysiwyg-component.sumome-react-wysiwyg-popup-text.sumome-react-wysiwyg-text > div > div > p {
    font-family: Montserrat !important;
    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1.64 !important;
    color: #303030 !important;
    max-width: 310px;
}

.listbuilder-popup-content > div > div > div > span > div > div:nth-child(3) > div > div > button {
    font-family: Montserrat !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    width: auto !important;
    text-align: center !important;
    margin: auto !important;
    padding: 15px 60px !important;
    border-radius: 50px !important;
    height: auto !important;
}

.listbuilder-popup-content > div > div > div > span > div > div:nth-child(5) > div > div > button {
    font-family: Montserrat !important;
    font-size: 10px !important;
    font-weight: normal !important;
    letter-spacing: 1px !important;
    color: #6c8092 !important;
}


.dynamic-underline:hover::after {
    width: 100%;
}

.dynamic-underline {
    display: inline-block;
    color: #2282d4;
    cursor: pointer;
}

.dynamic-underline:hover {
    color: #2282d4;
    text-decoration: none;
}

.dynamic-underline::after {
    content: '';
    width: 0%;
    height: 1px;
    display: block;
    background-color: #2282d4;
    margin-top: -4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.tooltip-block * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tooltip-block {
    cursor: pointer;
    padding-right: 3px;
    display: inline-block;
    position: relative;
}

.tooltip-icon:hover + .tooltip-text:not(.closed),
.tooltip-text.open:not(.closed) {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.tooltip-text {
    -webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: matrix(1, 0, 0, 1, 10, 0);
    -ms-transform: matrix(1, 0, 0, 1, 10, 0);
    transform: matrix(1, 0, 0, 1, 10, 0);
    position: absolute;
    height: 0;
    left: calc(100% + 10px);
    top: 13px;
    bottom: -100%;
    z-index: 105;
}

.tooltip-text .triangle {
    position: absolute;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    left: -6px;
    width: 20px;
    height: 20px;
}

.tooltip-text .triangle-inner {
    background-color: #6c8092;
    border-right: 1px solid #6c8092;
    border-top: 1px solid #6c8092;
    border-radius: 3px;
    width: 14px;
    height: 14px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tooltip-text .el-hidden-text-inner {
    width: 208px;
    background-color: #6c8092;
    border-radius: 6px;
    padding: 20px;
    position: relative;
}

.footer-zendesk-partner-img {
    width: 150px;
}

@media screen and (max-width: 1440px) {

    .tooltip-text .triangle {
        position: absolute;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        top: -6px;
        left: 50%;
        width: 20px;
        height: 20px;
    }
    .tooltip-text .el-hidden-text-inner {
        width: 208px;
        background-color: #6c8092;
        border-radius: 6px;
        padding: 20px;
        position: relative;
        -webkit-transform: translate(-12px, calc(50% + 21px));
        -ms-transform: translate(-12px, calc(50% + 21px));
        transform: translate(-12px, calc(50% + 21px));
    }
    .tooltip-icon:hover + .tooltip-text:not(.closed), .tooltip-text.open,
    .tooltip-text{
        -webkit-transform: translate(-50% , 10px);
        -ms-transform: translate(-50% , 10px);
        transform: translate(-50% , 10px);
    }
    .tooltip-icon:hover + .tooltip-text:not(.closed), .tooltip-text.open:not(.closed) {
        -webkit-transform: translate(-50% , 10px);
        -ms-transform: translate(-50% , 10px);
        transform: translate(-50% , 10px);
    }
}


@media (max-width: 768px) {

    .tooltip-text .triangle {
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 50%;
        left: calc(100% + 3px);
        width: 20px;
        height: 20px;
    }

    .tooltip-text .el-hidden-text-inner{
        -webkit-transform: translate(calc(-50% - 27px), 0);
        -ms-transform: translate(calc(-50% - 27px), 0);
        transform: translate(calc(-50% - 27px), 0);
    }
    .tooltip-icon:hover + .tooltip-text:not(.closed), .tooltip-text.open, .tooltip-text {
        -webkit-transform: translate(calc(-50% - 27px), 0);
        -ms-transform: translate(calc(-50% - 27px), 0);
        transform: translate(calc(-50% - 27px), 0);
    }

    .tooltip-icon:hover + .tooltip-text:not(.closed), .tooltip-text.open:not(.closed) {
        -webkit-transform: translate(calc(-50% - 8px), 0);
        -ms-transform: translate(calc(-50% - 8px), 0);
        transform: translate(calc(-50% - 8px), 0);
    }

    .col-md-55 {
        -ms-flex: 0 0 45.83%;
        -webkit-box-flex: 0;
        flex: 0 0 45.83%;
        max-width: 45.83%;
    }

    .col-md-58 {
        -ms-flex: 0 0 48%;
        -webkit-box-flex: 0;
        flex: 0 0 48%;
        max-width: 48%;
    }

    .hide-on-med-and-up {
        display: none;
    }
}

@media (max-width: 768px) and  (min-width: 600px) {
    .col-xm-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

}

.music-magpie-wrapper img{
    max-height: 42px;
    margin-top: 12px;
}

.partners-logos img {
    margin-left: 13px;
    margin-right: 13px;
    padding: 0;
}

.partners-logos {
    text-align: center;
    max-width: 100%;
    margin-top: 30px;
    opacity: .8;
}

.partners-big .rhone {
    width: 114px;
}

.partners-big .thrasio {
    width: 120px;
    height: 80px;
    margin-top: 13px;
}

.partners-big .speedway {
    width: 124px;
}

.partners-big .purple {
    width: 113px;
}

.partners-big .dune {
    width: 125px;
}

.partners-big.partners-logos {
    margin: 35px auto 70px;
    max-width: 945px;
}

.first-illustration {
    max-width: 400px;
}
.small-divider{
    margin-top: 8px;
}

@media (max-width: 991px) and (max-height: 400px) {

    .header {
        padding: 8px 0 8px;
    }

    .header .logo {
        width: 57px;
        height: 24px;
    }

    .header .right-side .logo {
        width: 57px;
        height: 24px;
        margin-left: 18px;
    }

    .header .main-menu-wrapper .menu-toggle-cross {
        margin: 5px;
    }

    .header .right-side {
        margin: 0;
        width: calc(100% - 90px);
    }

    .header .menu-toggle {
        margin-top: -2px;
    }

    .header .btn {
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 10px;
        line-height: 1;
        padding: 8px 25px;
        margin: -3px 0;
    }

    .content-wrapper, .centered {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 1440px) {

    section .background-image {
        top: -120px;
        right: -20px;
        bottom: 0;
        height: 100%;
    }
}

@media screen and (max-width: 1280px) {

    .header .right-side {
        width: calc(100% - 110px);
        padding-right: 0;
    }

    .main-menu {
        padding-left: 0;
    }

    .header .right-side .main-menu > li {
        margin: 0 8px;
    }

    section .background-image {
        top: -23px;
        right: -12%;
        height: auto;
        width: 79%;
    }

    .partners-big.partners-logos {
        margin: 35px auto 50px;
        max-width: 750px;
    }
}

@media (max-width: 1100px) {

    .frequently-asked-questions {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {

    h1.title {
        font-size: 34px;
    }

    .copyright {
        margin-top: 0;
    }

    .terms {
        display: block;
    }

    .samsung-logo {
        max-width: 99px;
    }

    .branded-logo {
        max-width: 126px;
    }

    .emma-logo, .gonito-logo {
        max-width: 77px;
    }

    .footer-menu > li {
        float: none;
    }

    .header .right-side {
        display: inline-block;
        float: right;
        width: auto;
    }

    .header .right-side .main-menu > li.has-menu::after {
        content: none;
        display: none;
    }

    .top-wrapper {
        display: block;
    }

    .header .menu-toggle {
        display: block;
    }

    .header .right-side .main-menu > li {
        margin-left: 0 !important;
    }

    .header .right-side .main-menu li {
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 2.57;
        letter-spacing: normal;
        color: #2a3946;
        float: none;
        display: block;
        padding: 8px 0;
    }

    .header .right-side .main-menu > li .sub-menu-holder {
        position: static;
        margin: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
    }

    .header .right-side .main-menu > li .sub-menu-holder .sub-menu {
        padding: 0 0 0 20px;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        position: static;
        list-style: none;
    }

    .header .right-side .main-menu li.has-menu > a {
        cursor: auto;
    }

    .header .right-side .main-menu-wrapper {
        position: fixed;
        width: 230px;
        background: #fff;
        top: 0;
        left: -100%;
        bottom: 0;
        -webkit-box-shadow: 4px 2px 33px 0 rgba(167, 182, 195, 0.52);
        box-shadow: 4px 2px 33px 0 rgba(167, 182, 195, 0.52);
        margin-top: 0;
        padding: 24px 15px 15px;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        height: 100vh;
    }

    .menu-overlay {
        content: '';
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        opacity: 0.5;
        left: 0;
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        z-index: 0;
        background-color: #2a3946;
    }

    .header.open .sign-up-header, .header.open .btn-white, .header.open .header-buttons .btn-success {
        position: static;
    }

    .header.open .main-menu-wrapper {
        right: auto;
        left: 0;
        overflow-y: auto;
    }

    .header.open .right-side .main-menu-wrapper {
        padding-top: 13px;
    }

    .partners-logos {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .partners-big .partners-logos {
        max-width: 535px;
        margin-left: auto;
        margin-right: auto;
    }

    .header .right-side .logo {
        width: 57px;
        height: 24px;
        margin-left: 18px;
    }

    .header .main-menu-wrapper .menu-toggle-cross {
        margin: 5px;
    }

    .header {
        padding: 8px 0 8px;
    }

    .header .logo {
        width: 57px;
        height: 24px;
    }

    .menu-toggle {
        margin-top: -4px;
    }

    .header .btn {
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 10px;
        line-height: 1;
        padding: 8px 25px;
        margin: -3px 0;
    }

    .header .right-side {
        margin: 0;
    }

    .header .menu-toggle {
        margin-top: -2px;
    }

    .header .right-side {
        width: calc(100% - 90px);
    }

    .hide-on-small {
        display: none;
    }

    .show-on-small {
        display: inline-block;
    }

    .header .menu-item-home {
        display: block;
    }
}

@media (max-width: 767px) {

    .btn::before {
        width: 16px;
    }

    .first-section {
        padding-top: 110px;
        margin-bottom: 60px;
    }

    .hide-on-xsmall {
        display: none;
    }

    .show-on-xsmall {
        display: inline-block;
    }

    .header .right-side .main-menu {
        padding-left: 0px;
        padding-top: 15px;
    }

    .title {
        font-size: 29px;
        line-height: 1.41;
    }

    .title.title-big {
        font-size: 32px;
        margin-bottom: 20px;
        margin-top: 168px;
    }

    img {
        display: inline-block;
    }

    .description {
        margin-bottom: 40px;
        text-align: left;
    }

    section .btn {
        text-align: center;
    }

    .title, h1.title, h2.title, h3.title,
    .text-annotation,
    .description, .btn, img, .zendesk-image, .helpscout-image, .freshdesk-image, .row > div {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    h1.title {
        font-size: 34px;
    }

    h3.title {
        font-size: 22px;
    }

    .partners-logos img {
        height: 57px;
        margin-bottom: -8px;
    }

    .partners-logos {
        max-width: 385px;
    }

    .partners-big .partners-logos,
    .partners-big .partners-logos {
        max-width: 100%;
    }
}

@media (max-width: 991px) and (min-width: 600px) {

    .header #main-menu-wrapper {
        bottom: auto;
        max-width: 293px;
        height: auto;
        top:-300%;
        right: 0;
        left: 0;
    }

    .header.open #main-menu-wrapper {
        bottom: 0;
        max-width: 293px;
        min-height: 100%;
        top: 0;
    }

    .header .right-side .main-menu > li {
        float: left;
        width: 100%;
        margin-right: 0;
        font-family: Montserrat, sans-serif;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 2.8;
        letter-spacing: normal;
        color: #2a3946;
    }

    .header .right-side .main-menu > li.menu-item-integrations .sub-menu-holder .sub-menu {
        padding-left: 0;
    }

    .header .right-side .main-menu > li .sub-menu-holder .sub-menu li a {
        font-family: Gilroy, sans-serif;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #2a3946;
    }

    .header .right-side .main-menu {
        width: 100%;
        padding-left: 20px;
        height: 100%;
        margin-bottom: 30px;
    }

    .header.open .header-buttons {
        background: #fff;
    }

    .header-buttons {
        position: relative;
        border-radius: 50px;
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .header.open .sign-up-header, .header.open .btn-white, .header.open .header-buttons .btn-success {
        position: relative;
    }
}

@media screen and (max-width: 992px) {
    .integration-menu-item {
        margin-top: 5px !important;
    }

    .integration-group-ul {
        margin-top: 2px !important;
    }

    .menu-item-RESOURCES .integration-group-ul {
        margin-top: 20px !important;
    }

    .heldesks-group-2 {
        margin-top: -32px !important;
    }

    .menu-item-RESOURCES.open {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .header .right-side .main-menu > li {
        float: none !important;
    }
}

@media (max-height: 600px) {
    .first-section {
        padding-top: 90px;
    }
}

@media (max-width: 560px) {
    .partners-big .partners-logos,
    .partners-big .partners-logos {
        max-width: 400px;
    }

    .content-wrapper, .centered {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 400px) {
    .header .btn {
        padding: 8px 20px;
    }

    .btn-big {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.select2-container {
    width: 300px;
}

.btn-connect-marketplace {
    margin-top: 30px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #dadadb !important;
    height: 40px !important;
    border-radius: 2px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
}

.height40 {
    height: 40px;
}

/* New Integrations submenu layout */

.header .right-side .main-menu > li .sub-menu-holder .sub-menu li a {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 300;
    z-index: 99 !important;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%
}

.header .right-side .main-menu > li .sub-menu-holder .sub-menu li a:hover {
    color: #303030 !important;
    font-family: Gilroy, sans-serif !important;
    font-weight: 500;
    z-index: 99 !important;
}

.integration-menu-item {
    color: #303030 !important;
    z-index: 99 !important;
}

.integration-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    color: #b1bcc5;
}

.integration-group-ul {
    list-style: none;
    margin:0;
    padding: 0;
}

.integration-group-ul {
    margin-top: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.sub-menu-icon {
    margin-right: 20px;
    max-width: 20px;
    height: 20px;
}

.helpscout-menu-icon {
    width: 24px;
}

.menu-item-integrations-text {
    cursor: pointer;
}

.ebay-menu-icon {
    max-width:27px;
    margin-right: 14px;
}

.woocommerce-menu-icon {
    margin-right: 19px;
}

/* Footer logos */
.footer-hr-line {
    position: relative;
    width: 100%;
    height: 3px;
    margin-top: -4px;
}

.footer-images {
    padding-top: 25px;
    padding-bottom: 40px;
    margin-top: -15px;
    display: flex;
    justify-content: space-evenly;
}

.footer-img {
    display: inline-flex;
}

.footer-tablet-menu {
    display: none;
}

.help-sub-text {
    font-family: Gilroy !important;
    font-style: normal !important;;
    font-weight: 300 !important;;
    font-size: 14px !important;;
    line-height: 20px !important;;
    margin-top: 7px !important;;
    margin-bottom: 0 !important;;
}

@media screen and (min-width: 992px) {
    .sub-menu-holder .sub-menu {
        display: inline-flex;
        border-radius: 8px;
        padding-left: 0;
        box-shadow: 0 10px 29px 0 #d2d9dc;
        border: solid 1px #ecf0f2;
        width: 760px;
        height:247px;
    }

    .menu-item-RESOURCES .sub-menu-holder{
        min-width: unset;
    }
    .menu-item-RESOURCES .marketplaces-group {
        border-right: none;
    }

    .menu-item-RESOURCES .integration-menu-item {
        width: unset;
        max-width: 340px;
        margin-top:20px;
        max-height: 50px;
    }

    .menu-item-RESOURCES .help-menu-item-blog {
        max-height: 72px;
    }

    .menu-item-RESOURCES .help-menu-item-help {
        margin-top: 10px;
    }

    .help-menu-item-blog .help-sub-text {
        max-width: 230px;
    }

    .menu-item-RESOURCES .integration-menu-item a {
        font-weight: 400;
    }

    .menu-item-RESOURCES .sub-menu-holder .sub-menu {
        height: 255px;
        width: unset;
        box-shadow: 0 10px 49px #C6CBCE;
        border: 1px solid #ECF0F2;
    }

    .menu-item-RESOURCES .integration-group-ul {
        margin-top: 4px;
    }

    .menu-item-RESOURCES .sub-menu-holder .integrations-group {
        padding: 25px;
        padding-top: 1px;
        padding-left: 0;
    }

    .menu-item-RESOURCES .integration-menu-item {
        padding-left: 25px;
        border-left: 2px solid white;
    }

    .help-menu-item-help, .help-menu-item-faq, .help-menu-item-blog {
        border-left: 2px solid white;
    }

    .help-menu-item-help:hover {
        border-left: 2px solid #FFB848;
    }
    .help-menu-item-faq:hover {
        border-left: 2px solid #0081DB;
    }
    .help-menu-item-blog:hover {
        border-left: 2px solid #1BB869;
    ;
    }

    .menu-item-RESOURCES .sub-menu-holder .integrations-group .sub-menu-icon {
        margin-right: 2px;
        margin-top: -5px;
    }
    .header .right-side .main-menu > li .sub-menu-holder {
        min-width: 680px;
    }

    .integrations-group {
        padding-top: 25px;
        padding-bottom: 30px;
        padding-left: 42px;
    }

    .integration-menu-item {
        margin: 0 auto;
        width: 160px;
        min-height: 40px;
    }

    .first-in-column-item {
        margin-top: 15px;
    }

    .marketplaces-group {
        border-right: solid 1px #ecf0f2;
    }

    .marketplaces-group-1 {
        border-right: none;
    }

    .marketplaces-group-2 {
        padding-left: 0;
        padding-top: 40px;
    }

    .heldesks-group-2 {
        padding-top: 20px;
        margin-top: 20px;
        padding-left: 25px;
    }
}

@media screen and (max-width: 991px) {
    .help-sub-text {
        display: none;
    }
    .header .right-side .main-menu > li .sub-menu-toggle {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 4px 0 4px;
        border-color: #2a3946 transparent transparent transparent;
        display: inline-block;
        margin-left: 11px;
        top: -3px;
        position: relative;
        transform: rotate(0deg);
        transition: all .25s ease-in;
    }

    .marketplaces-group {
        margin-top: 10px !important;
    }

    .marketplaces-group-2 {
        margin-top: -29px !important;

    }

    .menu-item-RESOURCES .sub-menu-holder {
        margin-top: -40px !important;
        max-width: unset !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .main-menu {
        margin-top: 10px;
        padding-left: 10px !important;
    }
    .sub-menu-holder {
        display:none;
    }
    .main-menu-wrapper {
        min-width: 293px;
    }

    .sub-menu {
        padding: 0 !important;
    }

    .heldesks-group-2 {
        margin-top: -27px;
    }

    /* Footer logos tablet */

    .footer-tablet-menu {
        display: block;
    }
    .fifth-section-backgroung-image {
        top: 120px;
    }

    .footer-menu-items {
        width: 100%;
        display: inline-flex;
        justify-content: space-around;
    }

    .footer-menu-items .menu-item {
        text-transform: uppercase;
    }

    .footer-hr-line {
        display: none;
    }

    .footer-images {
        padding-top: 50px;
        padding-bottom: 52px;
    }



    .footer-img {
        max-width: 145px;
    }
}

@media screen and (max-width: 767px) {
    .main-menu {
        margin-top: 10px;
        padding: 0 !important;
    }

    .sub-menu-holder {
        display: none;
    }

    .sub-menu {
        padding: 0 !important;
    }

    .main-menu-wrapper {
        min-width: 273px;
    }

    /* Footer and footer logos */
    .last-section {
        margin-bottom: -110px;
    }

    .footer-hr-line {
        display: none;
    }

    .footer-images {
        flex-wrap: wrap;
    }

    .footer-img {
        max-width: 170px;
    }

    .footer-zendesk-partner-img {
        margin-top: 19px;
    }

    .footer-aws-img {
        max-width: 131px;
        margin-top: -16px;
    }
}

.blue-info-box {
    background: rgba(34, 130, 212, 0.1);
    border-radius: 4px;
    padding: 15px;
    border-left: 4px solid #2282D4;
}
.info-onboarding-text {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
}
.info-onboarding-text a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}
.info-video-text {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #6C8092;
    margin-top: 16px;
}

@media screen and (min-width: 680px) and (max-width: 767px) {
    .footer-img {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media screen and (min-width: 501px) and (max-width: 650px) {
    .footer-img {
        margin-right: 20px;
        margin-left: 20px;
    }
}

/* Header HD */
@media screen and (min-width: 1920px) {
    .header-wrapper {
        max-width: 95%;
    }
}

/* Last section on main page background image fix */
.last-section {
    position: relative;
}

.fifth-section-backgroung-image {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Set globally color of placeholder and input text */
*::placeholder {
    color: #9f9f9f !important;
}

input, select, textarea {
    color: #303030 !important;
}

.menu-left-button {
    cursor: pointer;
}

.user-icon {
    max-width: 15px;
}

/* Select 2 customization */
.select2, .select2-search__field {
    border-radius: 2px !important;
}

.select2, .select2-results, .select2:focus, .select2-selection:focus, .select2-search__field:focus  {
    outline: none !important;
    font-family: 'Gilroy', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    font-stretch: normal !important;
}

.select2-selection__rendered {
    text-align: left !important;
    padding-left: 14px !important;
    color: #303030 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #ecf0f2;
    color: #303030;
}

.select2-results__option {
    padding-left: 14px !important;
}

.new-menu-icon {
    background: #FFB848;
    color: #fff;
    border-radius: 12.5px;
    padding: 6px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    text-transform: none;
}

.menu-legal {
    margin-top: 35px;
}

.menu-item-big  {
    margin-top: 23px;
}

/* Global override styling of simplelightbox */
.sl-overlay {
    background: #020B13 !important;
    opacity: 0.5 !important;
}

.sl-next, .sl-prev, .sl-close {
    color: white !important;
    opacity: 0.6 !important;
}

.sl-next:hover, .sl-prev:hover, .sl-close:hover {
    opacity: 1 !important;
}

.feedback-footer-logo-text {
    margin-top: 65px;
}

.feedback-footer-logo-text .btn-blue {
    background: #2282D4 !important;
}

.feedback-footer-logo-text .btn-blue::before {
    background-color: #1e75be;
}

.cr-footer-logo-text .button-description-wrapper .text, .feedback-footer-logo-text .button-description-wrapper .text{
    margin-bottom: 10px;
}

#session-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255, 0.75);
}

.session-popup-window {
    max-width: 300px;
    margin: 0px 10px;
    position: absolute;
    top: 50%;
    z-index: 1001;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 8px 56px 0 #ecf0f2;
}
.session-popup-window a{
    margin: 0 auto;
    display: block;
    color: #fff;
    text-decoration: none !important;
    padding: 8px 16px;
    white-space: nowrap;
}

.thrasio-logo {
    max-width: 150px;
}
.tushy-logo {
    max-width: 105px;
    margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
    .tushy-logo {
        margin-top: 15px !important;
    }
}
.partners-logos {
    max-width: 624px;
    margin: 0 auto;
}
.partners-logos img {
    order: 10;
}

.partners-logos .samsung-logo {
    order: 0;
}

.partners-logos .emma-logo {
    order: 1;
}
.partners-logos .speedway-logo {
    order: 2;
}

.partners-logos .thrasio-logo {
    order: 3;
}

.partners-logos .funko-logo {
    order: 4;
}

.heyday-logo {
    width: 120px;
}

@media screen and (max-width: 991px) {

    .partners-logos .samsung-logo {
        order: 2;
    }

    .partners-logos .thrasio-logo {
        order: 0;
    }

    .partners-logos .tushy-logo {
        order: 2;
    }

    .partners-logos .iherb-logo {
        order: 3;
    }

    .partners-logos .funko-logo {
        order: 5;
    }

    .partners-logos .speedway-logo {
        order: 4;
    }

    .partners-logos .gonito-logo {
        order: 6;
    }
}
.etsy-menu-icon {
    margin-top: -2px;
    margin-right: 21px;
}

.UR_chatHandleTab {
    right: auto !important;
    left: 50px;
}
.UR_chatViewport.UR_viewportWidgetPositionRight .UR_chatViewportInner {
    right: auto !important;
    left: 50px;
}
