*,
*::before,
*::after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #666;
    line-height: 26px;
    font-size: 17px;
    font-family: Poppins, sans-serif;
}

a {
    text-decoration: none;
}

b {
    color: #1394d2;
    font-weight: 500;
}

strong {
    font-weight: 600
}

.button {
    display: inline-block;
    border-radius: 5px;
    background: #89c9e8;
    padding: 10px 20px 9px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 26px;
    font-size: 20px;
}

.button:hover {
    background: #1394d2;
}

.button.inactive {
    background: #c9c9c9;
    cursor: not-allowed;
}

.button.inactive:hover {
    background: #c9c9c9;
}

button.button {
    border: 0 none;
}

.dropdown {
    position: relative;
}

.button.dropdown-toggle {
    position: relative;
    cursor: pointer;
    padding-right: 40px;
}

.button.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    transform: translateY(calc(-50% - 3px)) rotate(45deg);
}

.dropdown.open .button.dropdown-toggle::after {
    transform: translateY(calc(-50% + 2px)) rotate(-135deg);
}

.dropdown.open .button.dropdown-toggle {
    background: #1394d2;
}

.dropdown-items {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    min-width: 100%;
    border-radius: 5px;
    border: 2px solid #1394d2;
}

.dropdown.open .dropdown-items {
    display: block;
}

.dropdown-link {
    display: block;
    background: #1394d2;
    padding: 10px 20px 9px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 26px;
    font-size: 20px;
}

.dropdown-link:hover {
    background: #fff;
    color: #1394d2;
}

@media screen and (max-width: 567px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media screen and (min-width: 568px) and (max-width: 767px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media screen and (min-width: 1260px) {
    .container {
        margin-right: auto;
        margin-left: auto;
        width: 1240px;
        padding-right: 20px;
        padding-left: 20px;
    }
}

#header-top {
    border-bottom: 5px solid #d8d8d8;
    padding-top: 28px;
    padding-bottom: 20px;
}

#header-top-container::after {
    display: block;
    clear: both;
    content: "";
}

#header-logo {
    float: left;
    margin-top: 12px;
    margin-bottom: 20px;
}

#header-logo-link {
    display: block;
}

#header-logo-image {
    display: block;
}

#header-menu-toggle {
    float: right;
    width: 87px;
    height: 59px;
    border: 0 none;
    background: transparent;
    padding: 0;
}

#header-menu-toggle .menu-icon-bar {
    display: block;
    border-radius: 5px;
    background: #000;
}

#header-menu-toggle:hover .menu-icon-bar {
    background: #1394d2;
}

#header-menu-toggle .menu-icon-bar:nth-child(1),
#header-menu-toggle .menu-icon-bar:nth-child(3) {
    height: 10px;
}

#header-menu-toggle .menu-icon-bar:nth-child(2),
#header-menu-toggle .menu-icon-bar:nth-child(3) {
    margin-top: 14px;
}

#header-menu-toggle .menu-icon-bar:nth-child(2) {
    height: 11px;
    border-top: 1px solid #8f8f8f;
    border-bottom: 1px solid #8f8f8f;
}

#header-user-nav {
    clear: right;
    float: right;
    margin-top: 87px;
}

#header-menu-toggle + #header-user-nav {
    margin-top: 28px;
}

#header-login {
    position: relative;
}

#login-form {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px 19px 19px 29px;
}

#login-form.open {
    display: block;
}

#login-form::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #1394d2;
    content: "";
}

#login-form-title {
    color: #333;
}

#login-form-title-top {
    text-transform: uppercase;
    line-height: 40px;
    font-size: 32px;
    font-weight: 600;
}

#login-form-title-bottom {
    margin-top: -5px;
    line-height: 24px;
    font-size: 18px;
}

#login-form-title + .form-control {
    margin-top: 5px;
}

#login-form .form-control + .form-control {
    margin-top: 2px;
}

#login-form label {
    display: inline-block;
    color: #999;
    line-height: 18px;
    font-size: 14px;
}

#login-form input[type="email"],
#login-form input[type="password"] {
    display: block;
    margin-top: -2px;
    width: 100%;
    border-radius: 10px;
    border: 0 none;
    background: #eaeaea;
    padding: 8px 9px;
    line-height: 25px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;
}

#login-form .form-error {
    color: #f00;
    line-height: 18px;
    font-size: 14px;
}

#login-form .form-actions {
    margin-top: 20px;
    text-align: right;
}

@media screen and (max-width: 359px) {
    #login-form {
        width: 300px;
    }
}

@media screen and (min-width: 360px) and (max-width: 413px) {
    #login-form {
        width: 340px;
    }
}

@media screen and (min-width: 414px) {
    #login-form {
        width: 350px;
    }
}

#header-user-nav-items {
    margin: -5px;
    padding: 0;
    list-style: none;
    display: flex;
}

.header-user-nav-item {
    margin: 5px;
}

#logout-button {
    padding: 8px 7px 8px 13px;
    line-height: 0;
}

#header-menu {
    clear: both;
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

#header-menu-items {
    margin: 0;
    padding: 32px 0;
    list-style: none;
}

.header-menu-item {
    text-align: center;
    line-height: 0;
}

.header-menu-item + .header-menu-item {
    margin-top: 18px;
}

.header-menu-link {
    display: inline-block;
    color: #333;
    line-height: 24px;
    font-size: 18px;
}

.header-menu-link:hover {
    color: #1394d2;
    font-weight: 600;
}

#header-bottom {
    background: #f0f0f0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header-contact-text {
    color: #333;
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
}

.header-contact-link {
    color: inherit;
}

.header-contact-link:hover {
    color: #1394d2;
}

@media screen and (max-width: 359px) {
    .header-contact-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 479px) {
    #header-user-nav-items {
        flex-wrap: wrap;
    }

    .header-user-nav-item.dropdown {
        width: 100%;
    }

    .header-user-nav-item .dropdown-toggle {
        width: 100%;
    }

    .header-user-nav-item:nth-child(2) {
        width: calc(100% - 67px);
    }

    .header-user-nav-item:nth-child(2) .button {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .header-contact-block + .header-contact-block {
        margin-top: 15px;
    }
}

@media screen and (min-width: 768px) {
    #header-contact {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 768px) and (max-width: 919px) {
    .header-contact-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 479px), (min-width: 768px) and (max-width: 1079px) {
    .header-contact-icon {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .header-contact-text {
        margin-top: 10px;
        text-align: center;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px), (min-width: 1080px) {
    .header-contact-block::after {
        display: block;
        clear: left;
        content: "";
    }

    .header-contact-icon {
        float: left;
    }

    .header-contact-text {
        float: left;
        margin-top: 9px;
        margin-left: 20px;
    }
}

@media screen and (min-width: 1260px) {
    #header-contact {
        padding-right: 20px;
        padding-left: 20px;
    }

    #header-contact::after {
        display: block;
        clear: left;
        content: "";
    }

    .header-contact-block {
        float: left;
    }

    #header-contact-phone {
        width: 360px;
    }

    #header-contact-email-and-web {
        margin-left: 40px;
        width: 440px;
    }

    #header-contact-address {
        margin-left: 40px;
        width: 280px;
    }
}

#breadcrumbs {
    margin-top: 13px;
}

#breadcrumbs-items {
    margin: -10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    padding: 10px;
}

.breadcrumbs-item:not(:first-child)::before {
    position: relative;
    left: -8px;
    content: "/";
}

.breadcrumbs-link {
    color: #1394D2;
    transition: filter 0.3333s ease-in-out;
}

.breadcrumbs-link:hover {
    filter: brightness(.75)
}

.error-message {
    background: #f00;
    padding: 1.5em 2em;
    color: #fff;
    text-align: center;
}

#contact {
    margin-top: 40px;
    border-top: 3px dotted #94dcff;
    padding-top: 60px;
}

#contact-data {
    margin: 40px 0 0;
    padding: 0;
    line-height: 21px;
}

#contact-data dt,
#contact-data dd {
    margin: 0;
    padding: 0;
}

.contact-data-link {
    color: inherit;
}

.contact-data-link:hover {
    color: #1394d2;
}

@media screen and (max-width: 479px) {
    .contact-data-row + .contact-data-row {
        margin-top: 7px;
    }

    #contact-data dd {
        padding-left: 7px;
    }
}

@media screen and (min-width: 480px) {
    .contact-data-row::after {
        display: block;
        clear: left;
        content: "";
    }

    #contact-data dt,
    #contact-data dd {
        float: left;
    }
}

@media screen and (min-width: 480px) and (max-width: 567px) {
    #contact-data dt {
        width: 120px;
    }
}

@media screen and (min-width: 568px) {
    #contact-data dt {
        width: 180px;
    }
}

#contact-gallery {
    margin-top: 40px;
}

.contact-gallery-link {
    display: block;
}

.contact-gallery-image {
    display: block;
    width: 100%;
    height: auto;
}

.contact-gallery-link {
    border-style: solid;
    border-color: #b6e5f6;
}

.contact-gallery-link:hover {
    border-color: #1394d2;
}

@media screen and (max-width: 767px) {
    #contact-gallery {
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
        width: 380px;
    }

    .contact-gallery-item + .contact-gallery-item {
        margin-top: 30px;
    }

    .contact-gallery-link {
        border-width: 10px;
    }
}

@media screen and (min-width: 768px) {
    #contact-gallery {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #contact-gallery {
        margin-right: -8px;
        margin-left: -8px;
    }

    .contact-gallery-item {
        padding-right: 8px;
        padding-left: 8px;
    }

    .contact-gallery-link {
        border-width: 6px;
    }
}

@media screen and (min-width: 1024px) {
    #contact-gallery {
        margin-right: -15px;
        margin-left: -15px;
    }

    .contact-gallery-item {
        padding-right: 15px;
        padding-left: 15px;
    }

    .contact-gallery-link {
        border-width: 10px;
    }
}

#contact-message {
    margin-top: 40px;
    border-top: 3px dotted #94dcff;
    border-bottom: 3px dotted #94dcff;
    background: #fafafa;
    padding-top: 26px;
    padding-bottom: 30px;
}

#contact-message-form {
    margin-top: 25px;
}

#footer-top {
    padding-top: 60px;
    padding-bottom: 40px;
}

#footer-brand {
    width: 203px;
}

#footer-brand-link {
    display: block;
}

#footer-logo-image {
    display: block;
}

.footer-contact-list {
    margin: 0;
    padding: 0;
    line-height: 19px;
    font-size: 15px;
}

.footer-contact-list div::after {
    display: block;
    clear: both;
    content: "";
}

.footer-contact-list dt {
    margin: 0;
    padding: 0;
    float: left;
}

.footer-contact-link {
    color: inherit;
}

#footer-middle {
    background: #f2f2f2;
    padding-top: 7px;
    padding-bottom: 9px;
    text-align: right;
    line-height: 0;
}

#footer-middle::after {
    display: block;
    clear: right;
    content: "";
}

#footer-links {
    float: right;
}

#footer-links::after {
    display: block;
    clear: left;
    content: "";
}

.footer-link {
    float: left;
    color: #1394d2;
    font-weight: 600;
    line-height: 24px;
}

.footer-link + .footer-link {
    margin-left: 16px;
}

#footer-bottom {
    padding-top: 22px;
    padding-bottom: 23px;
}

#footer-bottom-container::after {
    display: block;
    clear: right;
    content: "";
}

#footer-credit {
    float: right;
}

#footer-credit::after {
    display: block;
    clear: left;
    content: "";
}

#footer-credit-text {
    float: left;
    margin-top: 1px;
    color: #dfdfdf;
    line-height: 15px;
    font-size: 12px;
}

#footer-credit-logo {
    float: left;
    margin-left: 8px;
}

#footer-credit-link {
    display: block;
}

#footer-credit-logo-image {
    display: block;
}

@media screen and (max-width: 767px) {
    .footer-contact-list + .footer-contact-list {
        margin-top: 19px;
    }
}

@media screen and (min-width: 768px) {
    #footer-contact::after {
        display: block;
        clear: left;
        content: "";
    }

    .footer-contact-list {
        float: left;
    }
}

@media screen and (min-width: 768px) and (max-width: 1339px) {
    .footer-contact-list {
        width: 50%;
    }
}

@media screen and (max-width: 1023px) {
    #footer-contact {
        margin-top: 23px;
    }
}

@media screen and (min-width: 1024px) {
    #footer-top-container::after {
        display: block;
        clear: left;
        content: "";
    }

    #footer-brand {
        float: left;
    }

    #footer-contact {
        float: left;
        margin-top: 1px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 11259px) {
    #footer-contact {
        margin-left: 4%;
        width: calc(96% - 203px);
    }
}

@media screen and (min-width: 1260px) and (max-width: 1339px) {
    #footer-contact {
        margin-left: 10%;
        width: calc(90% - 203px);
    }
}

@media screen and (max-width: 1339px) {
    .footer-contact-list dd {
        float: left;
        margin-left: 7px;
    }
}

@media screen and (min-width: 1340px) {
    #footer-contact {
        margin-left: 40px;
        width: 957px;
    }

    .footer-contact-list {
        width: calc(50% - 20px);
        border-left: 3px dotted #97ddff;
        padding-top: 11px;
        padding-bottom: 12px;
        padding-left: 40px;
    }

    .footer-contact-list + .footer-contact-list {
        margin-left: 40px;
    }

    #footer-contact dd {
        float: right;
    }
}

#to-top-button {
    opacity: 0;
    position: fixed;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 21px;
    border: 0 none;
    padding: 0;
    background: #1394d2;
    transition: opacity 1s ease-in-out;
}

#to-top-button:hover {
    background: #89c9e8;
}

#to-top-button.visible {
    opacity: 1;
}

#to-top-button::before,
#to-top-button::after {
    position: absolute;
    top: 23px;
    width: 11px;
    height: 3px;
    background: #fff;
    content: "";
}

#to-top-button::before {
    left: 17px;
    transform: rotate(-45deg);
}

#to-top-button::after {
    left: 22px;
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    #to-top-button {
        right: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #to-top-button {
        right: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1259px) {
    #to-top-button {
        right: 30px;
    }
}

@media screen and (min-width: 1260px) {
    #to-top-button {
        left: calc(50% + 570px);
    }
}

.form .form-control + .form-control {
    margin-top: 2px;
}

.form label {
    display: inline-block;
    color: #201f42;
    line-height: 22px;
    font-size: 16px;
}

.form label.required::after {
    content: "*";
    color: #f00;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
    display: block;
    margin-top: -1px;
    width: 100%;
    border-radius: 10px;
    border: 0 none;
    background: #eaeaea;
    padding: 8px 9px;
    line-height: 25px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;
}

.form textarea {
    height: 163px;
    resize: vertical;
}

.form-check-wrapper::after {
    display: block;
    clear: left;
    content: "";
}

.form-check-wrapper label {
    float: left;
    margin-top: -1px;
    margin-left: 11px;
    width: calc(100% - 31px);
}

.form input[type="checkbox"] {
    float: left;
    position: relative;
    appearance: none;
    background-color: #eaeaea;
    margin: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
}

.form input[type="checkbox"]:checked:after {
    position: absolute;
    top: 4px;
    left: 2px;
    width: 12px;
    height: 6px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    content: "";
    transform: rotate(-45deg);
}

.form .form-control + .form-control.form-check {
    margin-top: 15px;
}

.form .form-actions {
    margin-top: 20px;
}

.form .form-error {
    color: #f00;
    line-height: 21px;
    font-size: 14px;
}

.form.form-error:empty {
    height: 0;
    overflow-y: hidden;
}

.form-link {
    color: #f00;
    text-decoration: underline;
}

.form-optional-mark {
    color: #f00;
}

@media screen and (max-width: 567px) {
    .form .submit-button {
        margin-top: 20px;
    }
}

@media screen and (min-width: 568px) {
    .form .form-actions::after {
        display: block;
        clear: both;
        content: "";
    }

    .form .recaptcha {
        float: left;
    }

    .form .submit-button {
        float: right;
    }
}

@media screen and (max-width: 1023px) {
    .form {
        max-width: 648px;
    }

    .form .form-block + .form-block {
        margin-top: 4px;
    }
}

@media screen and (min-width: 1024px) {
    .form::after {
        display: block;
        clear: both;
        content: "";
    }

    .form .form-block:first-child {
        float: left;
    }

    .form .form-block:last-child {
        float: right;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1259px) {
    .form .form-block:first-child {
        width: calc(40% - 15px);
    }

    .form .form-block:last-child {
        width: calc(60% - 15px);
    }
}

@media screen and (min-width: 1260px) {
    .form .form-block:first-child {
        width: 380px;
    }

    .form .form-block:last-child {
        width: 780px;
    }
}

.section {
    margin-top: 60px;
}

.section-heading,
.section-subheading {
    color: #1394d2;
    font-weight: 600;
}

.section-heading {
    line-height: 38px;
    font-size: 32px;
}

.section-subheading {
    line-height: 38px;
    font-size: 26px;
}

.section-text {
    margin-top: 27px;
}

.section-text p:not(:first-child) {
    margin-top: 26px;
}

.section-text ul {
    padding-left: 1.5em;
}

.section-text a {
    color: #1394d2;
}

.section-small-print {
    margin-top: 31px;
    line-height: 21px;
    font-size: 14px;
}

.section-small-print p:not(:last-child) {
    margin-bottom: 21px;
}

@media screen and (max-width: 767px) {
    #home-about-us-image {
        display: block;
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

@media screen and (min-width: 768px) {
    #home-about-us-container::after {
        display: block;
        clear: both;
        content: "";
    }

    #home-about-us-heading,
    #home-about-us-text {
        float: left;
    }

    #home-about-us-image {
        float: right;
    }
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
    #home-about-us-heading,
    #home-about-us-text {
        width: 50%;
        padding-right: 30px;
    }

    #home-about-us-image {
        width: 50%;
    }
}

@media screen and (min-width: 1260px) {
    #home-about-us-container {
        margin-right: -20px;
    }

    #home-about-us-heading,
    #home-about-us-text {
        width: 600px;
        padding-right: 60px;
    }

    #home-about-us-image {
        width: 620px;
    }
}

.home-why-choose-us-image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

#home-why-choose-us-image-2 {
    margin-top: 20px;
}

#home-why-choose-us-text {
    margin-top: 43px;
}

.why-choose-us-item::after {
    display: block;
    clear: left;
    content: "";
}

.why-choose-us-item-number {
    float: left;
}

.why-choose-us-item-text {
    float: left;
    width: calc(100% - 80px);
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 24px;
    font-size: 20px;
}

.why-choose-us-item:nth-child(even) .why-choose-us-item-text {
    color: #1394d2;
}

@media screen and (max-width: 479px) {
    .why-choose-us-item + .why-choose-us-item {
        margin-top: 40px;
    }
}

@media screen and (min-width: 480px) {
    .why-choose-us-item + .why-choose-us-item {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    #home-why-choose-us-images {
        margin-top: 20px;
    }

    .home-why-choose-us-image {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 768px) {
    #home-why-choose-us-container::after {
        display: block;
        clear: both;
        content: "";
    }

    #home-why-choose-us-heading,
    #home-why-choose-us-text {
        float: right;
    }

    #home-why-choose-us-heading {
        margin-top: -5px;
    }

    #home-why-choose-us-images {
        float: left;
    }
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
    #home-why-choose-us-heading,
    #home-why-choose-us-text {
        width: 50%;
        padding-left: 30px;
    }

    #home-why-choose-us-images {
        width: 50%;
    }
}

@media screen and (max-width: 1259px) {
    .why-choose-us-item-text {
        margin-left: 15px;
    }
}

@media screen and (min-width: 1260px) {
    #home-why-choose-us-container {
        margin-left: -20px;
    }

    #home-why-choose-us-heading,
    #home-why-choose-us-text {
        width: 600px;
        padding-left: 60px;
    }

    #home-why-choose-us-images {
        width: 620px;
    }

    .why-choose-us-item-text {
        margin-left: 30px;
    }
}

#home-product-categories {
    margin-top: 23px;
}

.home-product-category-image {
    display: block;
    margin-top: 20px;
    max-width: 100%;
    width: auto;
    height: auto;
    border: 10px solid #f2f2f2;
}

.home-product-category-more {
    margin-top: 30px;
}

.home-product-category-more .button {
    text-transform: none;
}

@media screen and (max-width: 767px) {
    .home-product-category + .home-product-category {
        margin-top: 40px;
    }
}

@media screen and (min-width: 768px) {
    #home-product-categories-container {
        display: flex;
        justify-content: space-between;
    }

    .home-product-category {
        width: calc(33.3333%);
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #home-product-categories-container {
        margin-right: -5px;
        margin-left: -5px;
    }

    .home-product-category {
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media screen and (min-width: 1024px) {
    #home-product-categories-container {
        margin-right: -10px;
        margin-left: -10px;
    }

    .home-product-category {
        padding-right: 10px;
        padding-left: 10px;
    }
}

#reseller-partner-registration {
    margin-top: 24px;
}

#reseller-partner-registration-body {
    margin-top: 20px;
    border-top: 3px dotted #94dcff;
    border-bottom: 3px dotted #94dcff;
    background: #fafafa;
    padding-top: 26px;
    padding-bottom: 30px;
}

#reseller-partner-registration-form {
    margin-top: 24px;
}

#strip-curtain-catalog {
    margin-top: 24px;
}

#strip-curtain-catalog-filters {
    margin: -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.strip-curtain-catalog-filter-button {
    margin: 10px;
    padding-top: 12px;
    padding-bottom: 11px;
    text-transform: none;
    font-size: 18px;
}

#strip-curtain-catalog-table {
    margin-top: 40px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1px;
    color: #333;
}

#strip-curtain-catalog-table th {
    background: #89c9e8;
    padding: 10px 10px 9px;
    text-align: left;
    line-height: 26px;
    font-size: 20px;
    font-weight: 600;
}

#strip-curtain-catalog-table td {
    border: 1px solid #d5d5d5;
    padding: 9px 10px 7px;
    line-height: 26px;
    font-size: 16px;
}

#strip-curtain-catalog-table td + td {
    border-left: 0 none;
}

#strip-curtain-catalog-table td:first-child {
    text-align: right;
    font-size: 14px;
}

#strip-curtain-catalog-table .cell-container::after {
    display: block;
    clear: both;
    content: "";
}

#strip-curtain-catalog-table .product-name {
    float: left;
    font-size: 17px;
    font-weight: 600;
}

#strip-curtain-catalog-table .color-variants-toggle {
    float: right;
}

#strip-curtain-catalog-table .color-variants-toggle::after {
    display: block;
    clear: left;
    content: "";
}

#strip-curtain-catalog-table .color-variants-toggle-text {
    float: left;
}

#strip-curtain-catalog-table .color-variants-toggle-button {
    float: left;
    margin-left: 10px;
    border: 0 none;
    background: transparent;
    padding: 1px;
}

#strip-curtain-catalog-table .product-variants-open .color-variants-toggle-icon {
    transform: rotate(180deg);
}

#strip-curtain-catalog-table .color-variants-hideable {
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

#strip-curtain-catalog-table td[colspan] {
    border: 0 none;
    padding: 0;
    text-align: left;
}

#strip-curtain-catalog-table .color-variants {
    padding-top: 20px;
    padding-bottom: 20px;
}

#strip-curtain-catalog-table .color-variants-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#strip-curtain-catalog-table .color-variant {
    position: relative;
    padding: 10px;
}

#strip-curtain-catalog-table .color-variant-thumbnail {
    display: block;
    outline: 1px solid #cfcfcf;
    outline-offset: -1px;
}

#strip-curtain-catalog-table .color-variant-name {
    color: #666;
    line-height: 20px;
    font-size: 15px;
    font-style: italic;
}

#strip-curtain-catalog-table .color-variant-image-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 2px solid #2094d3;
    background: #fff;
}

#strip-curtain-catalog-table .color-variant-image-link::before,
#strip-curtain-catalog-table .color-variant-image-link::after {
    position: absolute;
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
    background: #2094d3;
    content: "";
}

#strip-curtain-catalog-table .color-variant-image-link::after {
    transform: rotate(90deg);
}

@media screen and (max-width: 359px) {
    #strip-curtain-catalog-table .color-variants-toggle-text {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    #strip-curtain-catalog-table thead {
        display: none;
    }

    #strip-curtain-catalog-table,
    #strip-curtain-catalog-table tbody,
    #strip-curtain-catalog-table tbody tr,
    #strip-curtain-catalog-table td {
        display: block;
    }

    #strip-curtain-catalog-table tr + tr {
        margin-top: 24px;
    }

    #strip-curtain-catalog-table td:first-child:not([colspan]) {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    #strip-curtain-catalog-table td:not([colspan]):nth-child(odd) {
        background: #dcdcdc;
    }

    #strip-curtain-catalog-table .cell-label {
        display: none;
    }
}

#offline-order-forms {
    margin-top: 24px;
}

#offline-order-forms-container {
    margin: -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.offline-order-form-link {
    margin: 10px;
    padding: 13px 20px;
    text-transform: none;
    line-height: 24px;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .offline-order-form-link {
        width: calc(100% - 20px);
    }
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
    .offline-order-form-link {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 1259px) {
    .offline-order-form-link {
        text-align: center;
    }
}

#order-section {
    margin-top: 32px;
}

#order {
    margin-top: 23px;
}

#order-category-selector {
    margin: -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#order-category-selector .button {
    margin: 10px;
    padding: 13px 20px;
    text-transform: none;
    line-height: 24px;
    font-size: 18px;
}

#order-category-selector .button.active {
    background: #1394d2;
}

#order-form {
    margin-top: 30px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    padding: 12px 19px 19px;
}

#order-form-instructions {
    margin-bottom: 20px;
    color: #201f42;
    line-height: 20px;
    font-size: 15px;
}

#order-form-instructions p:not(:first-child) {
    margin-top: 10px;
}

#order-form-instructions ul {
    padding-left: 20px;
}

.order-form-error {
    color: #f00;
    line-height: 22px;
    font-size: 16px;
}

.order-form-container {
    margin: 20px -10px -2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#order-form a {
    color: #1394d2;
}

#order-form a:hover {
    text-decoration: underline;
}

#order-form h3 {
    margin-top: 22px;
    margin-bottom: -11px;
    line-height: 22px;
    font-size: 16px;
    font-weight: 700;
}

#order-form .form-control {
    padding: 2px 10px;
}

#order-form label {
    display: inline-block;
    color: #201f42;
    line-height: 22px;
    font-size: 16px;
}

#order-form input[type="text"],
#order-form select,
#order-form textarea {
    display: block;
    margin-top: -1px;
    border-radius: 10px;
    border: 0 none;
    background-color: #eaeaea;
    padding: 8px 9px;
    line-height: 25px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;
}

#order-form input[type="text"],
#order-form select {
    height: 41px;
}

#order-form input[type="text"].narrow,
#order-form select.narrow {
    width: 60px;
}

#order-form input[type="text"].medium,
#order-form select.medium {
    width: 180px;
}

#order-form input[type="text"].wide,
#order-form select.wide {
    max-width: 100%;
    width: 300px;
}

#order-form select {
    appearance: none;
    padding-right: 43px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAPCAYAAADgbT9oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR5JREFUeNqclDsKwkAQhrOChaCxsvHVaGtrsBMVQRAP4hH0Bp7FRhHxAekFwcJWK7GzsrGM/4QdWWM22TjwMWTY+fZJLM/zLI5KpZQHW+BYCQLjO+AAClxLqVKkHehTNpWTFGkFmsDFd5HqglZcrZZZ2lR6njTJ7XY/REh7SEuQUcpX0OYVbwJSCjtq5aiPkNYBKUUNLFg8Ba+QfpLv5XaD0jlIh/TQTse+GNt1kYYaeY7OkOUGUv/4/DMWQgQvIhPSRJPOwEQjfYABpMfP5bFYkS9ANsGLI2kH0jMXfsRS7shXYv8j/XrHasgn1pdnlliqFRvKtdJIcYz8Dlo6aaxYkXflClnaRv0S2aj+hGL+CQ1wAnWT8cJUnDTeAgwAXl94V+4yrvcAAAAASUVORK5CYII=");
    background-position: center right 14px;
    background-repeat: no-repeat;
}

#order-form textarea {
    width: 100%;
    height: 66px;
    resize: vertical;
}

#order-form .form-field-hint {
    margin-bottom: 11px;
    line-height: 22px;
    font-size: 16px;
}

#order-form .form-field-error {
    margin-bottom: 11px;
    color: #f00;
    line-height: 22px;
    font-size: 16px;
}

#order-item-note-control {
    margin-top: 33px;
    position: relative;
    width: 100%;
}

#order-item-note-control::before {
    position: absolute;
    top: -14px;
    left: -10px;
    width: calc(100% + 20px);
    height: 1px;
    background: #ccc;
    content: "";
}

#order-item-submit {
    margin-top: 20px;
    text-align: right;
    line-height: 0;
}

#order-item-submit-button {
    padding-top: 8px;
    text-transform: none;
    line-height: 24px;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    #order-form .form-control.half,
    #order-form .form-control.full {
        width: 100%;
    }

    #order-form .form-control.full input[type="text"],
    #order-form .form-control.full select,
    #order-form .form-control.half input[type="text"],
    #order-form .form-control.half select {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    #order-form .form-control.half {
        width: 50%;
    }

    #order-form .form-control.full {
        width: 100%;
    }

    #order-form .form-control.full input[type="text"],
    #order-form .form-control.full select {
        width: calc(50% - 10px);
    }

    #order-form .form-control.half input[type="text"],
    #order-form .form-control.half select {
        width: 100%;
    }
}

#strip-curtain-layouts {
    margin-top: 20px;
}

#strip-curtain-layouts-heading {
    font-size: 20px;
    font-weight: 600;
}

#strip-curtain-layouts-body {
    margin-top: 26px;
}

#strip-curtain-layouts-container {
    margin: -16px;
    display: flex;
}

.strip-curtain-layout-image {
    margin: 16px;
    width: auto;
    height: auto;
}

@media screen and (max-width: 767px) {
    #strip-curtain-layouts-container {
        flex-wrap: wrap;
    }

    .strip-curtain-layout-image {
        max-width: calc(50% - 32px);
    }
}

@media screen and (min-width: 768px) {
    #strip-curtain-layouts-container {
        justify-content: space-between;
    }

    .strip-curtain-layout-image {
        max-width: calc(20% - 32px);
    }
}

#order-items {
    margin-top: 20px;
}

#order-items-heading {
    color: #1394d2;
    line-height: 38px;
    font-size: 26px;
    font-weight: 600;
}

#order-items-body {
    color: #333;
}

#order-items-list {
    margin-top: 11px;
}

#order-items-list-head {
    background: #89c9e8;
    padding: 10px ;
    line-height: 26px;
    font-size: 20px;
    font-weight: 600;
}

.order-item-cell {
    line-height: 26px;
    padding: 8px 10px;
}

.order-item-number {
    font-size: 14px;
}

.order-item-name {
    font-size: 17px;
    font-weight: 600;
}

.order-item-parameters,
.order-item-quantity {
    font-size: 16px;
}

.order-item-remove-button {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    border: 0 none;
    background: #f47674;
}

.order-item-remove-button::after {
    position: absolute;
    top: 11px;
    left: 3px;
    width: 18px;
    height: 2px;
    background: #fff;
    content: "";
}

@media screen and (max-width: 1023px) {
    #order-items {
        margin-top: 40px;
    }

    #order-items-list-head {
        display: none;
    }

    .order-item + .order-item {
        margin-top: 40px;
    }

    .order-item-cell {
        border: 1px solid #d5d5d5;
    }

    .order-item-number {
        display: none;
    }

    .order-item-actions {
        text-align: right;
    }
}

@media screen and (min-width: 1024px) {
    .order-item {
        display: flex;
        border: 1px solid #d5d5d5;
    }

    .order-item + .order-item {
        margin-top: 1px;
    }

    .order-item-number {
        width: 38px;
        background: #dcdcdc;
    }

    .order-item-name {
        width: calc(23% - 30px);
        border-right: 1px solid #d5d5d5;
        border-left: 1px solid #d5d5d5;
    }

    .order-item-parameters {
        width: calc(62% - 32px);
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .order-item-number + .order-item-parameters {
        width: calc(85% - 70px);
    }

    .order-item-parameter {
        width: 33.3333%;
        border: 1px solid #d5d5d5;
    }

    .order-item-parameter:nth-child(3n + 1),
    .order-item-parameter:nth-child(3n + 3) {
        background: #dcdcdc
    }

    .order-item-parameter:nth-child(3n + 2) {
        border-right: 1px solid #d5d5d5;
        border-left: 1px solid #d5d5d5;
    }

    .order-item-parameter:nth-child(n + 4) {
        border-top: 1px solid #d5d5d5;
    }

    .order-item-quantity {
        width: calc(15% - 20px);
        border-right: 1px solid #d5d5d5;
        border-left: 1px solid #d5d5d5;
    }

    .order-item-actions {
        width: 44px;
    }
}

#order-message-control {
    margin-top: 58px;
}

#order-message-label {
    display: inline-block;
    color: #201f42;
    line-height: 22px;
    font-size: 16px;
}

#order-message-input {
    display: block;
    width: 100%;
    height: 164px;
    resize: vertical;
    border-radius: 10px;
    border: 0 none;
    background: #eaeaea;
    padding: 8px 9px;
}

#order-submit {
    margin-top: 20px;
    text-align: right;
    line-height: 0;
}

#order-submit-button {
    display: inline-block;
    border-radius: 10px;
    border: 0 none;
    background: #f47674;
    padding: 13px 20px;
    color: #fff;
    line-height: 24px;
    font-size: 18px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
}

.textpage {
    margin-top: 60px;
}

.textpage-heading {
    color: #1394d2;
    line-height: 38px;
    font-size: 32px;
    font-weight: 600;
}

.textpage-text {
    margin-top: 27px;
}

.textpage-text h2 {
    margin-top: 40px;
    margin-bottom: 26px;
    line-height: 38px;
    font-size: 26px;
}

.textpage-text h3 {
    margin-bottom: 13px;
    line-height: 26px;
    font-size: 20px;
}

.textpage-text p,
.textpage-text ul,
.textpage-text ol {
    margin-bottom: 26px;
}

.textpage-text ul,
.textpage-text ol {
    padding-left: 2em;
}

.textpage-text b {
    color: inherit;
}

#reseller-partner-actions {
    margin-top: 24px;
    display: flex;
}

#reseller-partner-actions .button {
    text-transform: none;
}

@media screen and (max-width: 767px) {
    #reseller-partner-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    #reseller-partner-actions .button + .button {
        margin-top: 20px;
    }

    #reseller-partner-actions .button {
        white-space: normal;
    }
}

@media screen and (min-width: 768px) {
    #reseller-partner-actions .button + .button {
        margin-left: 20px;
    }
}

#reseller-partner-data {
    margin-top: 30px;
}

#reseller-partner-data-heading {
    color: #1394d2;
    line-height: 38px;
    font-size: 26px;
}

#reseller-partner-data-body {
    border-top: 3px dotted #99ddff;
    border-bottom: 3px dotted #99ddff;
    background: #fafafa;
    padding-top: 26px;
    padding-bottom: 30px;
}

#delete-reseller-partner-registration-form {
    margin-top: 24px;
    display: flex;
}

@media screen and (max-width: 479px) {
    #delete-reseller-partner-registration-form {
        flex-direction: column;
        align-items: flex-start;
    }

    #delete-reseller-partner-registration-form .button + .button {
        margin-top: 20px;
    }
}

@media screen and (min-width: 480px) {
    #delete-reseller-partner-registration-form .button + .button {
        margin-left: 20px;
    }
}

#product-category-products-menu {
    margin-top: 27px;
}

#product-category-products-menu-items {
    border-radius: 5px;
    border: 1px solid #1394D2;
    list-style: none;
}

.product-category-products-menu-item + .product-category-products-menu-item {
    border-top: 1px solid #1394d2;
}

.product-category-products-menu-link {
    display: block;
    padding: 9px 10px 7px;
    color: #1394d2;
    transition: all 0.3333s ease-in-out;
}

.product-category-products-menu-link:hover {
    background: #1394d2;
    color: #fff;
}

.attachments {
    margin-top: 27px;
}

.attachment-items {
    list-style: none;
}

.attachment-item {
    padding: 9px 20px 7px;
    display: flex;
    color: #333;
    font-weight: 600;
    transition: background-color .2s ease-in-out;
}

.attachment-item + .attachment-item {
    border-top: 1px solid #dcdcdc;
}

.attachment-item:hover {
    background: #dcdcdc;
}

.attachment-item-link,
.attachment-item-download-link {
    display: flex;
    align-items: end;
    color: #1394D2;
    transition: filter .3333s ease-in-out;
}

.attachment-item-link:hover,
.attachment-item-download-link:hover {
    filter: brightness(.6666);
}

.attachment-item-download-link-text {
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .attachment-item {
        flex-direction: column;
    }

    .attachment-item-download-link {
        margin-top: 13px;
    }
}

@media screen and (min-width: 768px) {
    .attachment-item {
        justify-content: space-between;
        align-items: end;
    }
}