/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap');

/* DEFAULTS */

:root {
    --color-white: #FFFFFF;
    --color-black: #171717;
    --color-modal: #303030;
    --color-default: #8D8D8D;
    --color-primary: #2C9A44;
    --color-gray: #E3E5E8;
    --color-gray-2: #BBBCBC;
    --color-gray-3: #707070;
    --color-gray-4: #BBBFC4;
    --color-red: #E84848;
    --color-alert: #D61212;
    --color-green: #A6BC0E;
}

html {
    font-size: 16px;
    margin-top: 0 !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    min-width: 320px;
    background: var(--color-white);
    font-family: 'Lato', 'Arial', sans-serif;
    color: var(--color-default);
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.25em;
    /* padding-top: 20px; */
}

body[text-size="small"] {
    font-size: 16px;
}

body[text-size="medium"] {
    font-size: 20px;
}

body[text-size="large"] {
    font-size: 22px;
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
}

strong,
b {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 1.25em;
    color: inherit;
    font-weight: 400;
    line-height: px;
    letter-spacing: 0;
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    outline: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* LOADER */

body.loaderEnable {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    background-color: rgba(255, 255, 255);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    transition: opacity .3s ease;
    pointer-events: none;
    opacity: 0;
}

body.loaderEnable::before {
    opacity: 1;
}

.siteLoader {
    display: block;
    position: relative;
}

.lds-ring {
    display: inline-block;
    position: fixed;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50vh;
    transform: translateY(-50%) translateX(-50%);
    z-index: 9999;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid var(--color-primary);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--color-primary) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* LOADER */


/* CORE */

.d-flex {
    display: flex;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.d {
    background: red;
    height: 50px;
}

.container {
    padding-right: 25px;
    padding-left: 25px;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-italic {
    font-style: italic;
}

.color-red {
    color: var(--color-red);
}

.mb-40 {
    margin-bottom: 40px;
}

/* SLICK RESET */

.slick-slider,
.slick-slider * {
    outline: 0 !important;
}

.navbar-default {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 23px 0;
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    z-index: 1071;
}

.nav-sticky .navbar-default {
    box-shadow: 0 0 12px rgba(0, 0, 0, .24);
}

.navbar-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* NAVBAR */
.nav-active {
    overflow: hidden;
}

.navbar-logo {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 30px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.navbar-logo:hover,
.navbar-logo:focus {
    opacity: .7;
}

.navbar-logo img {
    display: block;
    /* width: 191px; */
    width: 226px;
    height: auto;
    max-height: 36px;
    margin-left: -13px;
}

.navbar-button {
    position: relative;
    margin-left: auto;
    z-index: 10;
}

.navbar-toggle {
    display: block;
    background: transparent;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    padding: 0;
    cursor: pointer;
}

.toggle-icon {
    position: relative;
    top: 0;
    display: block;
    width: 100%;
    border-bottom: 3px solid var(--color-gray-3);
    border-radius: 1.5px;
    -webkit-transition: top .3s ease, border-color .3s ease, transform .3s ease;
    transition: top .3s ease, border-color .3s ease, transform .3s ease;
}

.nav-active .navbar-toggle .toggle-icon {
    border-color: #fff;
}

.toggle-icon+.toggle-icon {
    margin-top: 4px;
}

.nav-active .navbar-toggle .toggle-icon:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-active .navbar-toggle .toggle-icon:nth-child(2) {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.nav-active .navbar-toggle .toggle-icon:nth-child(3) {
    top: -7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9;
}

.navbar-collapse-inner {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    min-height: 100%;
    background: var(--color-primary);
    /* border-radius: 40px; */
}

.navbar-collapse-inner:before {
    content: 'MENU';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.25em;
    line-height: 1;
    /* border-radius: 40px 40px 0 0; */
    padding: 28px 25px 29px;
    z-index: 2;
    text-align: center;
}

.navbar-collapse-inner:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 77px;
    background: var(--color-white);
    z-index: 1;
}

.navbar-nav {
    width: 100%;
    list-style: none;
    padding: 77px 25px;
    margin: 0;
}

.navbar-nav>li+li {
    margin-top: 34px;
}

.navbar-nav>li>a {
    color: var(--color-white);
    font-size: 1.25em;
    font-weight: 300;
    line-height: px;
}

.navbar-nav>li>a:hover {
    font-weight: 400;
}

.navbar-nav>li.active>a {
    font-weight: 400;
}

/* HEADER DEFAULT */
.header-slider {
    max-width: 1903px;
    margin: 0 auto;
}

.header-slider .slick-arrow {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    font-size: 0;
    opacity: .8;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    outline: 0;
    padding: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.header-slider .slick-arrow.slick-prev {
    left: 15px;
    background-image: url('../images/small-arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center center;
    transform: translateY(-50%) rotateZ(180deg);
}

.header-slider .slick-arrow.slick-next {
    right: 15px;
    background-image: url('../images/small-arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.header-slider .slick-arrow:hover {
    opacity: 1;
}

.header-slider .slick-dots {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.header-slider .slick-dots>li+li {
    margin-left: 3px;
}

.header-slider .slick-dots>li>button {
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    background: transparent;
    font-size: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    opacity: .8;
    padding: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}


.header-slider .slick-dots>li.slick-active>button {
    opacity: 1;
}

.header-slider .slick-dots>li>button:before {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: top .3s ease, right .3s ease, bottom .3s ease, left .3s ease;
    transition: top .3s ease, right .3s ease, bottom .3s ease, left .3s ease;
}

.header-slider .slick-dots>li.slick-active>button:before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.header-slide {
    display: block;
    position: relative;
    min-height: 159px;
    background-color: var(--color-gray);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding-bottom: 42.4%;
    overflow: hidden;
    z-index: 1;
}

.header-slide-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 21.33333333%;
}

.header-slide-inner>div {
    padding-bottom: 2px;
}

.header-slide-title {
    font-size: 1.625em;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
    line-height: 32px;
}

/* ENTRY SECTION */
.app-entry {
    padding-top: 20px;
}

.app-entry-heading {
    font-size: 1.125em;
    font-weight: 300;
    line-height: 22px;
    border-bottom: 2px solid var(--color-gray);
    padding-bottom: 20px;
    color: var(--color-black);
}

/* APP SECTION */
.app-section-content {
    border-bottom: 2px solid var(--color-gray);
    padding: 30px 0;
}

.app-section-content.no-border {
    border-bottom: 0;
}

.app-section-content.no-pb {
    padding-bottom: 0;
}

.app-section-title {
    margin-top: -7px;
    margin-bottom: 40px;
    color: var(--color-black);
}

.app-section-title.no-margin {
    margin-bottom: 0;
    color: var(--color-black);
}

.app-section-back .app-section-title {
    padding-left: 20px;
}

.app-section-button {
    padding-top: 40px;
}

.app-buttons-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-buttons-row>a {
    padding: 0 5px;
    width: 50%;
    text-align: center;
}

/* LINKED CONTENT */
.linked-content-item+.linked-content-item {
    border-top: 1px solid var(--color-gray);
    padding-top: 24px;
    margin-top: 24px;
}

.linked-content {
    position: relative;
    display: -webkit-flex;
    display: flex;
}

.linked-content-aside {
    min-width: 100px;
    max-width: 100px;
    width: 100px;
}

.linked-content-thumbnail {
    position: relative;
    background-color: var(--color-primary);
    border-radius: 15px;
    z-index: 1;
}

.linked-content-thumbnail.bg-1 {
    background: var(--color-red);
}

.linked-content-thumbnail.bg-2 {
    background: var(--color-green);
}

.linked-content-thumbnail.bg-3:before,
.linked-content-thumbnail.bg-3:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.linked-content-thumbnail.bg-3:before {
    background: var(--color-green);
    border-radius: 15px 0 0 15px;
}

.linked-content-thumbnail.bg-3:after {
    left: 50%;
    background: var(--color-red);
    border-radius: 0 15px 15px 0;
}

.linked-content-thumbnail>.thumbnail-inner {
    position: relative;
    /* background-size: cover; */
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding-bottom: 100%;
    overflow: hidden;
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
}

.linked-content-item:hover .thumbnail-inner,
.linked-content-item:focus .thumbnail-inner {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .12);
}

.linked-content-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.linked-content-badge+.linked-content-badge {
    right: 16px;
}

.linked-content-badge+.linked-content-badge+.linked-content-badge {
    right: 36px;
}

.linked-content-badge+.linked-content-badge+.linked-content-badge+.linked-content-badge {
    right: 56px;
}

.linked-content-badge+.linked-content-badge+.linked-content-badge+.linked-content-badge+.linked-content-badge {
    right: 76px;
}

.linked-content-badge.color-1 {
    background: var(--color-red);
}

.linked-content-badge.color-2 {
    background: var(--color-green);
}

.linked-content-badge.color-3:before,
.linked-content-badge.color-3:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.linked-content-thumbnail.bg-3 .linked-content-badge:before {
    background: var(--color-green);
}

.linked-content-thumbnail.bg-3 .linked-content-badge:after {
    left: 50%;
    background: var(--color-red);
}

.linked-content-badge img {
    display: block;
    width: auto;
    max-width: 23px;
    height: auto;
    max-height: 23px;
}

.linked-content-main {
    position: relative;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-flex: 1;
    flex: 1;
    padding-left: 20px;
}

.linked-content-title {
    font-weight: 700;
    color: var(--color-black);
}

.linked-content-item.readed .linked-content-title {
    font-weight: 300;
}

.linked-content-date {
    color: var(--color-gray-2);
    font-size: 0.625em;
    line-height: 14px;
}

.linked-content-description {
    color: var(--color-gray-3);
    max-height: 44px;
    padding-top: 6px;
    padding-right: 46px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.linked-content-description p {
    font-size: 0.75em;
}

.linked-content-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 10px;
    z-index: 1;
}

.linked-content-arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-width: 9px 0 9px 14px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-white);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 1px;
}

.linked-content-status {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-red);
    min-width: 62px;
    color: var(--color-white);
    text-align: center;
    font-size: 0.5em;
    font-weight: 700;
    line-height: 12px;
    border-radius: 5px;
    padding: 3px 10px;
    z-index: 1;
}

/* BUTTON DEFAULT */
.btn-default {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: px;
    border: 0;
    border-radius: 15px;
    outline: 0;
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
    padding: 22px 5px 24px;
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    cursor: pointer;
    max-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-default:hover,
.btn-default:focus {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .12);
}

.btn-default.form-sent {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-default.btn-white {
    background: var(--color-white);
    color: var(--color-gray-4);
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0);
}

.btn-default.btn-white:hover,
.btn-default.btn-white:focus {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .12);
}

.btn-default.btn-reverse {
    background: var(--color-white);
    color: var(--color-gray-3);
    border: 1px solid var(--color-primary);
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0);
    transition: all .3s ease;
}

.btn-default.btn-reverse:hover,
.btn-default.btn-reverse:focus {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .12);
}

.btn-default.btn-modal {
    background: var(--color-modal);
    color: var(--color-gray-4);
    border: 1px solid var(--color-primary);
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0);
    border-radius: 15px;
}

.btn-default.btn-modal:hover,
.btn-default.btn-modal:focus {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .12);
}

.btn-default.text-large {
    font-size: 1.875em;
    font-weight: 700;
    line-height: 1;
    padding: 22px 15px 23px;
}

.btn-default.btn-text {
    background: none;
    color: var(--color-primary);
    font-size: 0.8125em;
    line-height: 19px;
}

p.btn-default.btn-text {
    cursor: default;
}

.btn-default.btn-footer {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0);
    border-radius: 10px;
    font-size: 0.5625em;
    line-height: 13px;
    padding: 7px 10px 8px;
    font-weight: 300;
}

.btn-default.btn-footer:hover,
.btn-default.btn-footer:focus {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .12);
}

.btn-default.btn-small {
    border-radius: 10px;
    font-size: 0.875em;
    line-height: 1.25em;
    padding: 14px 10px 13px;
    font-weight: 600;
    text-transform: none;
}

.btn-default.btn-wrong {
    background: var(--color-alert);
    color: var(--color-white);
    /* border:1px solid var(--color-white); */
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0);
    border-radius: 10px;
    font-size: 0.875em;
    line-height: 1.25em;
    padding: 14px 10px 13px;
    font-weight: 600;
    text-transform: none;
}

.btn-default.btn-wrong:hover,
.btn-default.btn-wrong:focus {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .12);
}

.btn-default.btn-wrong img {
    margin-right: 8px;
}

.btn-img {
    display: flex;
    align-items: center;
}

.btn-img img {
    margin-right: 8px;
}

.btn-default.btn-auto {
    width: auto;
    display: inline-block;
    padding: 14px 30px 13px;
}

/* POST BLOCK */
.post-blocks-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -25px;
    margin-bottom: -25px;
}

.post-blocks-row>div {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 25px;
    padding-bottom: 25px;
}

.post-block-item {
    display: block;
    position: relative;
    background: var(--color-gray);
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.post-block-thumbnail {
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    padding-bottom: 64%;
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
}

.post-block-item :hover.post-block-thumbnail,
.post-block-item :focus.post-block-thumbnail {
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, .12);
}

.post-block-main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 122px;
    padding: 8px 6px 16px;
}

.post-block-body h3 {
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.25em;
    padding-bottom: 16px;
    color: var(--color-default);
}

.post-block-body p {
    font-size: 0.75em;
    line-height: 15px;
    font-weight: 300;
}

.post-block-footer {
    margin-top: auto;
}

.post-block-button {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1em;
    text-align: center;
    line-height: 1.25em;
    border-radius: 12px;
    padding: 3px 5px 7px;
}

/* POST SLIDE */
.posts-slider-row {
    margin: 0 -25px;
}

.posts-slider .slick-list {
    padding-left: 25px;
}

.post-slide {
    display: block;
    width: 125px;
    margin-right: 25px;
}

.post-slide-thumbnail {
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0);
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
}

.post-slide:hover .post-slide-thumbnail,
.post-slide:focus .post-slide-thumbnail {
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, .12);
}

.post-slide-title {
    color: var(--color-default);
    font-size: 0.875em;
    line-height: 1.25em;
}

.post-slide-date {
    color: var(--color-gray-2);
    font-size: 0.625em;
    line-height: 14px;
    margin-top: 8px;
}

.post-slide-description {
    color: var(--color-gray-2);
    font-size: 0.75em;
    line-height: 14px;
    margin-top: 3px;
}

/* FOOTER DEFAULT */
.footer-default {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 300;
    padding: 4px 0 16px;
    margin-top: 48px;
}

.footer-blocks {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    align-items: center;
}

.footer-blocks>div {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 15px;
}

.footer-blocks>div.block-full {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

.footer-block {
    padding-top: 10px;
    padding-right: 10px;
}

.footer-block-body {
    padding-top: 3px;
}

.footer-block-body p,
.footer-block-body p a {
    font-size: 0.875em;
    line-height: 1.25em;
    font-weight: 300;
}

@media (max-width:374px) {

    /* .footer-block-body p,
    .footer-block-body p a{
        font-size: 0.5625em;
        line-height: 13px;
    } */
    .footer-blocks>div:first-child {
        min-width: 40%;
        max-width: 40%;
        width: 40%;
    }

    .footer-blocks>div:last-child {
        min-width: 60%;
        max-width: 60%;
        width: 60%;
    }
}

.footer-block-title {
    color: var(--color-white);
    font-size: 0.75em;
    line-height: 16px;
}

.footer-block-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-block-nav>li>a {
    color: inherit;
    margin-bottom: 10px;
}

.footer-block-nav>li:last-of-type>a {
    margin-bottom: 0;
}

.footer-copyrights-outer {
    border-top: 1px solid #fff;
    padding-top: 16px;
    margin-top: 16px;
}

.footer-copyrights {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-weight: 400;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
}

.footer-copyrights>div {
    padding: 0 10px;
}

.footer-author a {
    font-size: 1em;
    line-height: 14px;
}

.footer-copyrights p {
    font-size: 0.625em;
    line-height: 14px;
}

/* LOGIN MODAL */
.fade {
    opacity: 0;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.fade.in {
    opacity: 1;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh outline: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1050;
    background-color: var(--color-modal);
    /* border-radius: 40px; */
}

.modal.modal-white {
    background-color: rgba(255, 255, 255, 0.85);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: visible;
}

/* .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: 1040;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.in {
    opacity: .85;
} */

.modal-pretitle {
    padding-top: 25px;
    text-align: center;
    color: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.modal-flex {
    position: relative;
    display: -wekbit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 100vh;
}

.modal-dialog {
    width: 100%;
    min-width: 300px;
    max-width: 375px;
    padding: 30px 25px;
    margin: 0 auto;
}

#modal_velte .modal-dialog {
    width: 100%;
    min-width: 150%;
    max-width: 150%;
    transform: rotateZ(90deg);
}

.modal.modal-white .modal-dialog {
    padding: 30px 10px;
}

.modal-content {
    background: var(--color-white);
    border: 1px solid var(--color-gray-3);
    border-radius: 20px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .2);
    padding: 0 15px;
    margin-top: 80px;
}

.modal-header {
    position: relative;
    padding: 26px 20px 28px;
}

.modal-title {
    font-size: 0.8125em;
    font-weight: 900;
    line-height: 16px;
    text-align: center;
    padding-bottom: 50px;
    color: var(--color-black);
}

p.modal-error {
    text-align: center;
    width: 100%;
    font-size: 1.125em;
    line-height: 26px;
    background: var(--color-alert);
    color: var(--color-white);
    padding: 7px 30px;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: transparent;
    font-size: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
}

.modal-close:before,
.modal-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    border-bottom: 6px solid var(--color-black);
}

.modal-close:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-footer {
    border-top: 2px solid var(--color-gray);
    line-height: 0;
    padding: 30px 0;
}

.modal-footer.no-border {
    border-top: 0;
}

.btn-modal {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.125em;
    font-weight: 700;
    text-align: center;
    line-height: 24px;
    border: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
    padding: 8px 16px;
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    cursor: pointer;
}

.btn-modal:hover,
.btn-modal:focus {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .12);
}

.btn-modal.btn-large {
    min-width: 190px;
    max-width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.btn-modal.btn-wrong {
    background-color: var(--color-alert);
}

/* modal remove account */

.modal-footer-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0;
}

.modal-footer-btns .btn-modal {
    width: 46%;
}

#modal_remove_account .modal-title {
    padding-bottom: 0;
}

.modal-remove-acc h5 {
    font-size: 1.125em;
    line-height: 26px;
    padding-bottom: 15px;
    max-width: 85%;
    margin: 0 auto;
}

.modal-remove-acc p {
    font-size: 0.875em;
    line-height: 1.25em;
    padding-bottom: 10px;
}

.modal-subtitle {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.875em;
    text-transform: uppercase;
    line-height: 14px;
    padding: 11px 10px;
    border-radius: 10px;
    margin-bottom: 18px;
}

/* modals in my account */

.sprayer-list {
    padding: 0 10px;
    max-height: 40vh;
    overflow: auto;
}

.removeVariety,
.removeSprayer {
    display: flex;
    align-items: center;
}

.sprayer-single {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.sprayer-single p {
    font-size: 0.875em;
    line-height: 14px;
    max-width: 85%;
}

.sprayer-single img {
    margin-left: 15px;
}

.modal-content-inner .nav-register-tabs {
    margin: 4px 0 24px;
}

.modal-content-inner .nav-register-tabs>li {
    min-width: 37%;
    max-width: 37%;
    width: 37%;
}

.modal-content-inner .nav-register-tabs>li a {
    font-size: 0.8125em;
    line-height: 19px;
    display: flex;
    align-items: center;
}

.modal-content-inner .nav-register-tabs li:first-of-type {
    border-right: 1px solid var(--color-primary);
}

.modal-content-inner .nav-register-tabs li:last-of-type {
    border-left: 1px solid var(--color-primary);
}

.modal-content-inner .nav-register-tabs>li a img {
    max-width: 18px;
    margin-right: 8px;
}

.modal_quarter .modal-content-inner .form-field {
    margin-bottom: 23px;
}

.modal_quarter .modal-content-inner .field-checkbox-label {
    font-size: 0.875em;
    line-height: 14px;
    color: var(--color-gray-3);
}

.modal_quarter .modal-content-inner .field-checkbox:checked+.field-checkbox-label::before {
    background-color: var(--color-white);
}

.modal_quarter .modal-content-inner .field-checkbox:checked+.field-checkbox-label::after {
    opacity: 1;
}

.modal_quarter .modal-content-inner .field-checkbox-label::after {
    background-image: url('../images/checkmark-icon-primary.png');
    opacity: 0;
    transition: all .3s ease;
}

#modal_quarter_add {
    z-index: 1051;
}

#modal_quarter_edit {
    z-index: 1052;
}

#modal_variety {
    z-index: 1053;
}

#modal_thankyou {
    z-index: 1060;
}

.quarter-name {
    display: flex;
    align-items: center;
    width: 70%;
}

.quarter-name h4 {
    font-size: 1em;
    line-height: 14px;
    color: var(--color-gray-3);
}

.quarter-name img {
    max-width: 18px;
    margin-left: 9px;
}

.quarter-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    padding-left: 10px;
}

.quarter-edit,
.quarter-remove {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 15%;
}

/* modal filter */

#modal_filter .modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal_filter .modal-title img {
    margin-right: 16px;
}

/* DROPDOWN FILTER */
.app-section-filter {
    text-align: right;
    margin: 0 0 6px;
    padding: 16px 0 0;
    position: sticky;
    top: 70px;
    background: #fff;
    display: block;
    z-index: 99;
}

/* CHECKER */
.checker-input {
    display: none;
}

.checker-label {
    position: relative;
    display: block;
    background: var(--color-default);
    width: 56px;
    height: 30px;
    border-radius: 30px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    cursor: pointer;
    z-index: 1;
}

.checker-input[disabled]~.checker-label {
    background: var(--color-primary);
    opacity: 0.5;
}

.checker-input:checked+.checker-label {
    background: var(--color-primary);
}

.checker-label:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border-radius: 50%;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
    z-index: 1;
}

.checker-input:checked+.checker-label:before {
    left: 32px;
}

/* MESSAGE SINGLE */
.message-heading {
    text-align: center;
}

.message-heading-icon {
    position: relative;
}

.back-link {
    position: absolute;
    top: 50%;
    left: 0;
    width: 23px;
    height: 36px;
    background-image: url(../images/chevron-dark-gray.svg);
    background-size: cover;
    background-position: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
    z-index: 99;
}

.back-link:focus,
.back-link:hover {
    transform: translateY(-50%) translateX(-7px);
}

.app-section-back {
    position: relative;
}

.app-section-back .back-link {
    top: 50%;
    transform: translatey(-50%);
}

.message-heading-icon .message-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 5px;
    margin: 0 auto;
    z-index: 1;
}

.message-heading-icon.color-1 .message-icon {
    background: var(--color-red);
}

.message-heading-icon.color-2 .message-icon {
    background: var(--color-green);
}

.message-heading-icon .message-icon>.icon-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    z-index: -1;
}

.message-heading-icon .message-badge {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border: 1px solid var(--color-white);
    overflow: hidden;
    border-radius: 50%;
    z-index: 1;
}

.message-heading-icon .message-badge.color-1,
.message-heading-icon.color-1 .message-badge {
    background: var(--color-red);
}

.message-heading-icon .message-badge.color-2,
.message-heading-icon.color-2 .message-badge {
    background: var(--color-green);
}

.message-heading-icon .message-badge img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 12px;
}

.message-heading-type {
    margin-top: 26px;
}

.message-heading-type .type-title {
    color: var(--color-black);
    font-size: 1.25em;
    line-height: 24px;
}

.message-heading-type .type-data {
    color: var(--color-gray-2);
    font-size: 1em;
    line-height: 1.25em;
}

.message-meta {
    margin-top: 25px;
}

.message-meta p+p {
    margin-top: 4px;
}

.message-content {
    padding-top: 38px;
    margin-bottom: -20px;
}

.message-content h1,
.message-content h2,
.message-content h3,
.message-content h4 {
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--color-black);
}

/* .message-content h3 {
    font-size: 1.125em;
    line-height: 26px;
}

.message-content h4 {
    font-size: 1em;
    line-height: 22px;
} */

.message-content h1,
.news-content h1,
.message-content h2,
.news-content h2,
.message-content h3,
.news-content h3,
.message-content h4,
.news-content h4,
.message-content h5,
.news-content h5,
.message-content h6,
.news-content h6 {
    color: var(--color-default);
    font-weight: 600;
}

.message-content h1,
.news-content h1 {
    font-size: 1.625em;
    line-height: px;
}

.message-content h2,
.news-content h2 {
    font-size: 1.5em;
    line-height: px;
}

.message-content h3,
.news-content h3 {
    font-size: 1.375em;
    line-height: 26px;
}

.message-content h4,
.news-content h4 {
    font-size: 1.125em;
    line-height: 24px;
}

.message-content h5,
.news-content h5,
.message-content h6,
.news-content h6 {
    font-size: 1em;
    line-height: 22px;
}

.message-content p {
    margin-bottom: 20px;
}

.message-content img,
.news-content img {
    width: auto;
    height: auto;
    cursor: pointer;
}

.message-content>div,
.news-content>div {
    max-width: 100%;
}

.message-content p:not(:first-child) img {
    padding-top: 6px;
}

.message-content a,
.news-content a {
    text-decoration: underline;
}

.message-content a:hover,
.news-content a:hover {
    text-decoration: none;
}

/* GALLERY GROUP */
.gallery-group {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding-top: 30px;
    margin-right: -25px;
}

.gallery-group>div {
    -webkit-flex: 1;
    flex: 1;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 25px;
}

.gallery-item {
    font-size: 1em;
    text-align: center;
    line-height: 22px;
}

.gallery-thumbnail {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.gallery-thumbnail>.thumbnail-inner {
    background-size: cover;
    background-position: center;
    padding-bottom: 100%;
    transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
}

.gallery-thumbnail:focus .thumbnail-inner,
.gallery-thumbnail:hover .thumbnail-inner {
    transform: scale(1.04);
}

.gallery-title {
    margin-top: 7px;
}

.fancybox-bg {
    background: var(--color-white);
}

.fancybox-is-open .fancybox-bg {
    opacity: .85;
}

.fancybox-toolbar {
    opacity: 1;
    visibility: visible;
    right: 6px;
    top: 6px;
}

.fancybox-is-closing .fancybox-toolbar {
    opacity: 0;
}

.fancybox-button {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
}

.fancybox-button.fancybox-button--zoom {
    display: none !important;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: var(--color-white);
}

.fancybox-button.fancybox-button--close {
    position: relative;
}

.fancybox-button.fancybox-button--close:before,
.fancybox-button.fancybox-button--close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 2px;
    background: var(--color-white);
}

.fancybox-button.fancybox-button--close:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.fancybox-button.fancybox-button--close:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fancybox-button.fancybox-button--close svg {
    display: none;
}

/* MODAL LOGIN */
.modal-login~.modal-backdrop {
    background: var(--color-default);
}

.modal-login~.modal-backdrop.in {
    opacity: .9;
}

.modal-login .modal-close {
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    z-index: 10;
}

.modal-login .modal-close:before,
.modal-login .modal-close:after {
    border-bottom: 3px solid var(--color-white);
}

.modal-login .modal-dialog {
    padding-top: 48px;
    padding-bottom: 48px;
}

.modal-login .modal-header {
    padding: 0 0 21px;
}

.modal-login .modal-title {
    color: var(--color-white);
    font-size: 1.875em;
    font-weight: 700;
    line-height: 40px;
}

.modal-login .modal-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.modal-login .modal-footer {
    border: 0;
    padding: 35px 0 0;
}

.modal-login-field-group {
    position: relative;
    /* background: var(--color-white); */
    border: 1px solid var(--color-primary);
    border-bottom: 0;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.modal-login-field {
    margin: 0 10px;
}

.modal-login-field+.modal-login-field {
    border-top: 1px solid var(--color-primary);
}

.modal-login-field .field-control {
    display: block;
    width: 100%;
    color: var(--color-default);
    font-size: 1.125em;
    font-weight: 300;
    line-height: 26px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    padding: 22px 48px 22px 20px;
    background: transparent;
}

.modal-login-submit .btn-default.field-submit {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 25px 20px;
}

.modal-footer .btn-default {
    display: flex;
    flex-direction: column;
}

.btn-default span.text-small {
    font-size: 1.25em;
    margin-bottom: 5px;
}

.modal-login-field {
    padding-left: 13px;
    position: relative;
}

.modal-login-field.field-password::before,
.modal-login-field.field-mail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: cover;
    background-repeat: no-repeat;

}

.modal-login-field.field-mail::before {
    background-image: url('../images/modal-icon-mail.svg');
    width: 13px;
    height: 11px;
}

.modal-login-field.field-password::before {
    background-image: url('../images/modal-icon-password.svg');
    width: 11px;
    height: 14px;
}

.modal-login .modal-body p {
    text-align: right;
    font-size: 1.125em;
    font-weight: 300;
    padding-top: 20px;
    margin-bottom: -10px;
}

.modal-login .modal-body a {
    color: var(--color-primary);
    font-weight: 700;
}

/* NEWS SINGLE */
.news-heading {
    position: relative;
    text-align: center;
    padding: 0 30px;
}

.news-heading-date {
    color: var(--color-gray-2);
}

.news-heading-title {
    font-weight: 400;
    color: var(--color-black);
}

.news-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
    z-index: 1;
}

.news-thumbnail img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.news-thumbnail.full {
    padding-top: 64%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.news-thumbnail.full .news-heading {
    display: none;
}

.news-thumbnail.full img {
    width: 100%;
}

.news-content {
    padding-top: 42px;
}

.news-content h2,
.news-content h3,
.news-content h4 {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.25em;
}

.news-content h2+p,
.news-content h3+p,
.news-content h4+p {
    margin-top: 21px;
}

.news-content p+.gallery-group {
    padding-top: 26px;
}

.news-content .gallery-group+p {
    margin-top: 20px;
}

.news-content p+p {
    margin-top: 20px;
}

.news-pager {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    list-style: none;
    padding: 44px 0 0;
    margin: 0 -25px 0 0;
}

.news-pager>li {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 25px;
}

.news-pager>.pager-next {
    margin-left: auto;
}

.news-pager>li>a {
    display: block;
    font-size: 1em;
    text-align: center;
    line-height: 1.25em;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    padding: 10px 15px 13px;
    -webkit-transition: background .3s ease, color .3s ease;
    transition: background .3s ease, color .3s ease;
}

.news-pager>li>a:hover,
.news-pager>li>a:focus {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* FORM FIELDS */
.form-field.field-row {
    display: -webkit-flex;
    display: flex;
    margin-right: -7px;
}

.form-field+.form-field {
    margin-top: 8px;
}

.form-submit {
    margin-top: 15px;
}

.form-submit.standalone,
.form-field+.form-submit {
    margin-top: 50px;
}

.form-field .field-column {
    -webkit-flex: 1;
    flex: 1;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 7px;
}

.form-field .field-heading {
    font-size: 1em;
    line-height: 1.25em;
    margin-bottom: 7px;
}

.form-field .field-control {
    display: block;
    width: 100%;
    font-size: 0.875em;
    line-height: 1.25em;
    /* border: 1px solid rgba(44, 154, 68, .4); */
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    box-shadow: none;
    outline: 0;
    padding: 14px 15px;
    -webkit-transition: border .3s ease;
    transition: border .3s ease;
    color: var(--color-default);
}

.form-field .field-control[disabled] {
    border-color: var(--color-gray-2);
    pointer-events: none;
}

.form-field textarea.field-control {
    height: 150px;
    min-height: 100px;
    resize: vertical;
}

.form-field .input-icon textarea.field-control {
    height: 100px;
}

.form-field .input-icon {
    position: relative;
}

.form-field .input-icon[disabled] {
    filter: grayscale(100%);
}

.form-field .input-icon::before {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 18px;
    background-size: cover;
    background-image: url('../images/edit-primary.svg');
    pointer-events: none;
}

.form-field .field-control:focus {
    border-color: rgba(44, 154, 68, 1);
}

.form-field.error-validate input,
.error-validate input.required,
.error-validate input.required:focus {
    border-color: var(--color-red);
}

.error-validate input.required::placeholder {
    color: var(--color-alert);
}

.formMessagesWrapper {
    text-align: center;
}

.form-submit.error-validate p {
    color: var(--color-red);
    margin-bottom: 10px;
}

.form-field.error-validate .field-checkbox-label::before {
    border-color: var(--color-alert);
}

.form-field.error-validate .text-required {
    display: block;
}

.text-required {
    display: none;
    text-transform: uppercase;
    color: var(--color-alert);
    font-size: 0.8125em;
    line-height: 19px;
}

.field-checkbox {
    display: none;
}

.field-checkbox-label {
    position: relative;
    display: block;
    font-size: 0.75em;
    line-height: 16px;
    padding-left: 45px;
    cursor: pointer;
}

.field-checkbox-label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    opacity: .4;
    -webkit-transition: background .3s ease, opacity .3s ease;
    transition: background .3s ease, opacity .3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.field-checkbox:checked+.field-checkbox-label:before {
    background: var(--color-primary);
    opacity: 1;
}

.field-checkbox-label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 15px;
    height: 11px;
    background-image: url(../images/checkmark-icon.png);
    background-size: cover;
    background-position: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.field-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 32px;
    height: 32px;
}

.toggle-password img {
    position: absolute;
}

.field-input.pt-20 {
    margin-top: 20px;
    padding-top: 0;
}

.field-input.field-checker {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.field-checker-text {
    -webkit-flex: 1;
    flex: 1;
    font-size: 0.875em;
    line-height: 16px;
}

.field-checker-inner {
    display: flex;
    align-items: center;
}

.field-checker-text .checker-text {
    margin-top: -2px;
}

.field-checker-text .checker-subtext {
    font-size: 0.75em;
    line-height: 14px;
    margin-top: 5px;
}

.field-checker-input {
    padding-left: 15px;
    color: var(--color-default);
}

.form-subtitle {
    padding-top: 40px;
    text-align: center;
    padding-bottom: 5px;
}

.form-subtitle.title-default {
    padding-top: 40px;
    text-align: left;
}

.form-subtitle h2 {
    font-size: 1em;
    line-height: 22px;
}

.form-subtitle.title-default h2 {
    color: var(--color-black);
}

/* TABS REGISTER */
.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.nav-register-tabs {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 16px 0 45px;
}

.app-section-back {
    margin-bottom: 26px;
    padding-top: 10px;
}

.nav-register-tabs>li {
    -webkit-flex: 1;
    flex: 1;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
}

.nav-register-tabs>li>a {
    display: block;
    color: var(--color-primary);
    font-size: 0.875em;
    text-align: center;
    line-height: 1.25em;
    border: 1px solid var(--color-primary);
    padding: 4px 15px;
    -webkit-transition: background .2s ease, box-shadow .3s ease;
    transition: background .2s ease, box-shadow .3s ease;
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
}

.nav-register-tabs>li>a:hover,
.nav-register-tabs>li>a:focus {
    box-shadow: inset 0 0 0 100px rgba(42, 151, 65, .12);
}

.nav-register-tabs>li.active>a:hover,
.nav-register-tabs>li.active>a:focus {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .12);
}

.nav-register-tabs>li:first-child>a {
    border-right: 0;
    border-radius: 10px 0 0 10px;
}

.nav-register-tabs>li:last-child>a {
    border-left: 0;
    border-radius: 0 10px 10px 0;
}

.nav-register-tabs>li.active>a {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5px 15px;
}

/* other */

/* core */
.pt-0 {
    padding-top: 0;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* endcore */

/* select2 */

.select2-results__options {
    font-size: 1em;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-default);
    max-width: calc(100% - 30px);
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (min-width:420px) {
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        max-width: 100%;
    }
}

.select2-container.select2-container--open {
    z-index: 1060;
}

.select2-container .select2-selection--single {
    outline: 0 !important;
}

.select2.select2-container {
    display: block;
    width: 100% !important;
    margin-bottom: 10px;
}

.select2-container--default .select2-selection--single {
    /* border: 1px solid rgba(44, 154, 68, .4); */
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px transparent;
    -webkit-transition: border 0.3s ease, box-shadow 0.3s ease;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.input-filled .select2-container--default .select2-selection--single {
    border-color: var(--color-black);
    box-shadow: inset 0 0 0 1px var(--color-black);
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    /* border-color: rgba(44, 154, 68, .4); */
    border-color: var(--color-primary);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--color-primary);
    border-radius: 10px;
}

.select2-container .select2-selection--single {
    height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: inherit;
    font-size: 0.875em;
    line-height: 21px;
    padding: 10px 18px 9px 18px;
    color: var(--color-default);
    text-align: center;
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: block;
}

.select-filters~.select2.select2-container .select2-selection.select2-selection--multiple {
    padding: 10px 18px 11px;
}

.select2-selection.select2-selection--multiple {
    padding: 3px 18px 3px;
}

.select2-selection.select2-selection--multiple li.select2-selection__choice {
    display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    width: 100%;
    text-align: center;
}

span.divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-2);
}

[id*="-divider"] {
    pointer-events: none;
}

.filter-placeholder {
    width: 100%;
    text-align: center;
    font-size: 1em;
    line-height: 1.25em;
}

.select2-dropdown {
    border-color: #e2e2e2;
    border-radius: 0;
    top: 1px;
}

.select2-results__option {
    font-family: inherit;
    font-size: 1em;
    line-height: 17px;
    padding: 8px 18px;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 370px;
    scrollbar-width: thin;
}

.select2-container--default .select2-results__group {
    padding: 8px 18px 9px 0;
    font-size: 0.875em;
    line-height: 17px;
}

.select2-results__options .select2-results__option+.select2-results__option .select2-results__group {
    padding-top: 10px;
}

.select2-container--default .select2-results__option[role="group"] {
    padding-bottom: 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--color-white);
    color: var(--color-black);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background: var(--color-white);
    color: var(--color-black)
}

.select2-results>.select2-results__options {
    padding: 10px 0 10px 35px;
}

.select2-container--default .select2-results__option {
    position: relative;
}

.select2-container--default .select2-dropdown:not(.filters) .select2-results__option:not([role="group"])::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.select2-container--default .select2-dropdown:not(.filters) .select2-results__option[aria-selected="true"]::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    background-color: var(--color-primary);
}

.select2-container--default .select2-dropdown.multiple-checkbox .select2-results__option:not([role="group"])::before {
    border-radius: 5px;
}

.select2-container--default .select2-dropdown.multiple-checkbox .select2-results__option[aria-selected="true"]::after {
    content: '';
    width: 15px;
    height: 11px;
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    border-radius: 0;
    background: url('../images/checkmark-icon-primary.png');
    background-size: cover;
}

.select2-container--default .select2-dropdown.multiple-checkbox .select2-results__options,
.select2-container--default .select2-dropdown.select-custom .select2-results__options {
    padding-left: 26px;
}

.select2-container--default .select2-dropdown.multiple-checkbox .select2-results__option,
.select2-container--default .select2-dropdown.select-custom .select2-results__option {
    margin: 7px 0;
}

.select2-dropdown {
    border-color: var(--color-primary);
    border-radius: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default .select2-results__option {
    border-radius: 10px;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1.5em;
    color: var(--color-default);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 18px;
    width: auto;
    height: auto;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: translateY(-50%) rotateX(0deg);
    transform: translateY(-50%) rotateX(0deg);
    background-color: #fff;
    padding-left: 7px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    -webkit-transform: translateY(-50%) rotateX(-180deg);
    transform: translateY(-50%) rotateX(-180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    font-weight: 400;
    border: 0;
    margin: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "";
    display: block;
    color: var(--color-primary);
    font-size: 1em;
    line-height: 1;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    background: url('../images/chevron-down.svg');
    background-size: 100%;
    width: 20px;
    height: 20px;
}

select[multiple]~.select2 .dropdown-wrapper {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 0;
    pointer-events: none;
}

select[multiple]~.select2 .dropdown-wrapper::before {
    content: "";
    display: block;
    color: var(--color-primary);
    font-size: 1em;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: url('../images/chevron-down.svg');
    background-size: 100%;
    width: 20px;
    height: 20px;
}

select[multiple]~.select2.select2-container--open .dropdown-wrapper::before {
    transform: rotateZ(-180deg);
}

.select-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 100%;
    position: relative;
}

.btn-remove {
    width: 100%;
    min-width: 64px;
    max-width: 64px;
    display: flex;
    align-content: center;
    justify-content: center;
    border: 1px solid var(--color-red);
    padding: 10px;
    height: 42px;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 15px;
}

@media (max-width:479px) {
    .btn-remove {
        min-width: 52px;
        max-width: 52px;
    }
}

@media (max-width:420px) {
    .package-panel-content .select-container .select2.select2-container {
        width: 75% !important;
    }
}

.input-filled .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    color: var(--color-black);
}

.input-filled .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
    color: var(--color-primary);
}

#wpadminbar~.select2-container .select2-dropdown--below,
#wpadminbar~.select2-container .select2-dropdown--above {
    margin-top: 32px !important;
}

.filter-element {
    position: relative;
    width: 100%;
    display: block;
}

.filter-element::before {
    content: '';
    position: absolute;
    top: calc(50% + 6px);
    transform: translateY(calc(-50% - 6px));
    right: 30px;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border-radius: 50%;
    -webkit-transition: left .3s ease;
    transition: left .3s ease;
    z-index: 2;
}

.filter-element::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    background: var(--color-default);
    width: 56px;
    height: 30px;
    border-radius: 30px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    cursor: pointer;
    z-index: 1;
}

.select2-results__option[aria-selected="true"] .filter-element::before {
    right: 6px;
}

.select2-results__option[aria-selected="true"] .filter-element::after {
    background-color: var(--color-primary);
}

.select2-results__options[aria-multiselectable="true"] {
    padding: 10px 0 13px;
}

.select2-results__options[aria-multiselectable="true"] .select2-results__option {
    color: var(--color-gray-3);
    margin: 11px 0;
}

.select2-counter {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: green;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: block;
    transition: opacity .3s ease;
}

.select2-counter.counter-text {
    background: 0;
    color: #000;
    position: relative;
    width: auto;
    border-radius: 0;
    top: auto;
    left: auto;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--color-default);
    right: 30px;
}

select[disabled]~.select2 .select2-counter {
    opacity: 0;
    pointer-events: none;
}

.select-filters~span.select2 .select2-counter {
    display: flex;
}

.select2-container--default .select2-search--inline .select2-search__field {
    text-align: left;
    cursor: pointer;
    margin-top: 0%;
    max-width: 100% !important;
    width: auto !important;
    color: var(--color-default);
}

.select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--multiple,
select[disabled]~.select2 .dropdown-wrapper::before {
    background-color: var(--color-white);
    filter: grayscale(100%);
    pointer-events: none;
}

.select-custom[has-val="true"]~.select2-container--default .select2-selection--single,
.select-multi-checkbox[has-val="true"]~.select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--color-primary);
}

.select-multi-checkbox~.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    max-width: 100%;
    width: auto;
    padding: 0;
}

.select-multi-checkbox~.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: block;
    background-color: transparent;
    border: 0;
    margin: 0;
    border-radius: 0;
    text-align: left;
    display: flex;
    align-items: center;
    width: auto;
    position: relative;
}

.select-multi-checkbox~.select2-container--default .select2-selection--multiple .select2-selection__choice::after {
    content: ',';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* .select-multi-checkbox~.select2-container--default .select2-selection--multiple .select2-selection__choice:nth-last-child(2n):not(:first-child):after{
    content: '...';
    right: -5px;
} */

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    /* width: 100%; */
    width: auto;
}

.select-multi-checkbox~.select2-container--default .select2-selection--multiple .select2-selection__choice span {
    display: none;
}

.select2-add .btn-default.btn-small {
    border: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875em;
    line-height: 1.25em;
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 10px 10px;
    cursor: pointer;
}

.select2-container .select2-search--inline {
    float: none;
}

.select-multi-checkbox .select2-selection__rendered {
    overflow: hidden;
    max-width: 90%;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 0;
    border-bottom: 1px solid var(--color-primary);
    outline: 0;
}

/* select2 */

/* logged user */

.tab-image {
    cursor: pointer;
}

.chart-slider-modal .slick-arrow {
    position: absolute;
    top: 50%;
    width: 37px;
    height: 71px;
    background: transparent;
    font-size: 0;
    border: 0;
    box-shadow: none;
    outline: 0;
    padding: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    background-size: cover;
}

.chart-slider-modal .slick-arrow.slick-prev {
    left: -12px;
    background-image: url('../images/velte_arrow_left.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.chart-slider-modal .slick-arrow.slick-next {
    right: -12px;
    background-image: url('../images/velte_arrow_right.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.chart-slider-modal {
    padding: 0 30px;
}

.chart-modal-title {
    text-align: center;
}

.chart-slider-modal-nav {
    pointer-events: none;
}

.chart-modal-title span {
    text-align: center;
    background-color: var(--color-white);
    font-size: 0.8125em;
    line-height: 15px;
    padding: 0 10px;
}

#modal_velte .modal-body {
    padding: 0 12px 20px;
}

.chart-slider-modal img {
    width: 100%;
}

.chart-iframe {
    cursor: pointer;
}

.chart-slider-modal-outer .chart-iframe {
    cursor: default;
}

.chart-iframe iframe {
    border: 0;
}

.chart-slider-nav-modal-outer {
    margin-top: -18px;
}

.chart-slider-nav-outer {
    position: relative;
    margin-left: -25px;
    margin-right: -25px;
}

.chart-arrows {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 9;
}

.chart-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.chart-prev {
    left: 20px;
}

.chart-next {
    right: 20px;
}

.chart-arrow img {
    max-width: 32px;
}

.chart-title {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: rgba(44, 154, 68, 0.15);
    color: var(--color-gray-4);
    padding: 6px 5px;
    min-height: 42px;
    cursor: pointer;
}

.chart-title h4 {
    line-height: 15px;
    font-size: 0.8125em;
}

.chart-slider-nav-outer .slick-active .chart-title {
    background-color: #DEEFE2;
    color: var(--color-default);
}

.chart-slider-nav-outer .slick-current .chart-title {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.nav-register-tabs.nav-chart-tabs {
    margin-bottom: 25px;
}

/* logged user */

/* about */

.about-logo {
    display: block;
    margin: 0 auto;
    width: 255px;
    height: 36px;
}

.text-heading p {
    font-size: 1em;
    line-height: 22px;
}

@media (min-width:768px) {
    .about-logo {
        width: 271px;
        height: auto;
    }
}

/* about */

/* my account */

.acc-data-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acc-data-btns>a {
    width: 45%;
}

.acc-data {
    border-top: 2px solid var(--color-gray);
    padding-top: 30px;
}

.acc-data.no-border {
    border-top: 0;
}

.acc-data p {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 22px;
    font-weight: 300;
}

.abonent-data p {
    font-weight: 500;
    font-size: 1em;
    line-height: 22px;
    margin-bottom: 0;
}

.abonent-data strong {
    margin-bottom: 10px;
    display: block;
}

.abonent-data ul {
    margin-top: 0;
    list-style-type: none;
    padding-left: 1em;
}

.abonent-data ul li {
    position: relative;
    font-size: 0.875em;
    line-height: 1.25em;
    font-weight: 300;
}

.abonent-data ul li::before {
    content: '-';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.acc-data strong {
    color: var(--color-black);
    font-weight: 500;
}

/* my account */

/* panel collapse */

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.panel-collapses {
    overflow: hidden;
}

.panel {
    border-bottom: 2px solid var(--color-gray);
}

.panel:last-of-type {
    border-bottom: 0;
}

.panel-heading img {
    transition: all .3s ease;
    transform: rotateZ(-180deg);
}

a.collapsed img {
    transform: rotateZ(0);
}

.panel-heading h3 {
    width: 100%;
}

.panel-heading a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 0;
    text-transform: uppercase;
    font-size: 0.75em;
    line-height: 22px;
    font-weight: 500;
    color: var(--color-black);
}

.panel-content-inner {
    padding-bottom: 30px;
    padding-left: 1em;
}

.panel-content-inner ul {
    margin-left: 1em;
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

.panel-content-inner .btn-default {
    margin-left: -1em;
    margin-top: 20px;
}

/* panel collapse */

/* package offer */

.package-offer .text-small,
.package-offer .text-discounted {
    font-size: 0.6875em;
    line-height: 15px;
    color: var(--color-gray-2);
}

.package-offer .text-disable {
    text-decoration: line-through;
}

.package-offer .text-discounted {
    color: var(--color-primary);
}

.package-offer .field-checker-text {
    font-size: 0.875em;
    line-height: 19px;
    max-width: 70%;
}

.package-offer .field-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-subtotal-inner,
.package-total-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 8px 0;
    font-size: 1em;
    line-height: 21px;
}

.package-total-inner {
    font-size: 2em;
    line-height: 43px;
}

.package-subtotal {
    padding: 7px 0;
    margin: 45px 0 20px;
    border-top: 2px solid var(--color-gray);
    border-bottom: 2px solid var(--color-gray);
}

.package-subtotal-text span {
    font-size: 0.75em;
    line-height: 16px;
}

.package-subtotal-text,
.package-total-text {
    display: flex;
    flex-direction: column;
}

.package-total-text span {
    font-size: 0.75em;
    line-height: 16px;
}

.package-subtotal-price p,
.package-total-price p {
    font-weight: 800;
}

.subtotal-discount {
    color: var(--color-primary);
}

.text-normal {
    font-size: 1em;
    line-height: 21px;
}

.checker-input[aria-expanded="true"]~label {
    background: var(--color-primary);
}

.checker-input[aria-expanded="true"]~label::before {
    left: 32px;
}

.package-panel-content {
    padding: 20px 0
}

.package-panel.disabled .field-checker-text {
    color: var(--color-gray-2);
}

/* package offer */

/* tooltip */

.tooltip-icon {
    display: flex;
    width: 25px;
    margin-left: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.tooltip-icon[aria-describedby] {
    opacity: 0.6;
}

.tooltip {
    background-color: #fff;
    padding: 10px 25px 10px 10px;
    border: 1px solid var(--color-primary);
    position: absolute !important;
    z-index: 1055;
    border-radius: 5px;
}

.tooltip-icon[data-text="left"]~.tooltip {
    text-align: left;
}

.tooltip-icon[data-text="center"]~.tooltip {
    text-align: center;
}

.tooltip-icon[data-text="right"]~.tooltip {
    text-align: right;
}

.tooltip h4 {
    text-align: center;
    font-size: 0.8125em;
    line-height: 17px;
    margin-bottom: 10px;
}

.tooltip p,
.tooltip ul li {
    font-size: 0.6875em;
    line-height: 15px;
}

.tooltip-arrow {
    display: block;
    position: absolute;
    width: 19px;
    height: 19px;
    right: 5px;
    left: auto !important;
    top: 5px;
    background-image: url('../images/tooltip-close.svg');
    background-size: cover;
    cursor: pointer;
}

/* tooltip */

/* treatments */

.treatmens-filters {
    padding: 19px 0 25px;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.treatmens-filters .nav-register-tabs {
    margin: 11px 0 6px;
    justify-content: flex-start;
    width: 67%;
}

.treatmens-filters .nav-register-tabs li a {
    display: flex;
    align-items: center;
    font-size: 0.8125em;
    line-height: 19px;
}

.treatmens-filters .nav-register-tabs img,
.treatmens-filters .nav-register-tabs svg {
    max-width: 18px;
    margin-right: 8px;
}

.nav-register-tabs li.active svg path {
    fill: var(--color-white);
}

.nav-register-tabs li svg {
    margin-right: 8px;
}

.nav-treatment-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    width: 30%;
    padding: 7px 3px;
    margin: 11px 0 6px 10px;
    max-height: 31px;
    color: var(--color-primary);
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
}

.nav-filter-btn:hover,
.nav-filter-btn:focus {
    box-shadow: inset 0 0 0 100px rgba(42, 151, 65, .12);
}

.nav-filter-btn a {
    font-size: 0.75em;
    line-height: 16px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.nav-filter-btn img {
    margin-right: 8px;
}

.modal-content-inner .nav-filter-inner li {
    min-width: 33.33333333%;
    max-width: 33.33333333%;
    width: 33.33333333%;
}

.nav-register-tabs>li.active>a,
.nav-register-tabs>li>a {
    padding: 5px 3px;
    justify-content: center;
}

.modal-content-inner {
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    padding-bottom: 10px;
}

@media (max-width:360px) {
    .modal-content-inner .nav-filter-inner li {
        min-width: 50%;
        max-width: 50%;
        width: 50%;
    }

    .modal-content-inner .nav-filter-inner {
        flex-wrap: wrap;
    }

    .modal-content-inner .nav-filter-inner>li:nth-child(2)>a {
        border-radius: 0 10px 10px 0;
    }

    .modal-content-inner .nav-filter-inner>li:last-child>a {
        border-radius: 0 0 0 0;
    }
}

/* treatments */

/* treatments list */

.treatment-section select.disabled {
    filter: grayscale(100%);
}

.treatment-section .form-field .field-control {
    padding: 9px 15px 8px;
    min-height: 42px;
}

.treatment-section .select2-container--default .select2-selection--single .select2-selection__rendered,
.treatment-section .select2-container--default .select2-search--inline .select2-search__field,
.modal_preparate .select2-container--default .select2-selection--single .select2-selection__rendered,
.modal_preparate .select2-container--default .select2-search--inline .select2-search__field,
.modal_preparate .form-field .field-control,
.treatment-section .form-field .field-control,
.treatment-section .filter-placeholder {
    text-align: left;
    font-size: 1em;
    line-height: 1.25em;
}

.treatment-section .select2-container--default .select2-selection--single .select2-selection__rendered

/* .treatment-section .select2-container--default .select2-search--inline .select2-search__field */
    {
    padding: 10px 42px 10px 18px;
}

.modal_preparate .form-field .field-control {
    padding: 9px 15px;
}

/* 
.treatment-section .select2-counter{
    display: none;
} */

.treatment-section .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
    padding-right: 15px;
}

.treatments-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px;
    margin-bottom: 7px;
}

.treatments-heading h4 {
    font-size: 0.875em;
    line-height: 1.25em;
    font-weight: 600;
}

.treatments-heading p {
    font-size: 0.625em;
    line-height: 14px;
    font-weight: 400;
}

.treatments-heading strong {
    font-weight: 600;
}

.treatments-date {
    padding: 1px 40px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 15px 0;
}

.treatments-date p {
    font-size: 0.75em;
    line-height: 16px;
    font-weight: 600;
}

.treatments-subheading-inner {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    padding: 0 10px;
}

.treatments-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: auto;
    margin: 5px 15px;
}

.treatments-subheading::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-top: 1px solid var(--color-primary);
}

.treatments-subheading h3 {
    font-size: 1em;
    line-height: 22px;
    font-weight: 600;
    color: var(--color-primary);
}

.treatments-subheading img {
    margin-right: 8px;
}

.treatments-single-table {
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: 30px;
}

.table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f8f8;
    padding: 15px 5px;
    position: relative;
    /* overflow: hidden; */
    min-height: 126px;
    overflow: auto;
    transition: all .3s ease;
    scrollbar-width: thin;
}

.table-row.swipe {
    overflow: auto;
    transition: all .3s ease;
    scrollbar-width: thin;
}

.table-row .table-swipe {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    padding: 20px 10px;
    height: 100%;
}

.table-swipe p {
    font-size: 0.875em;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 7px;
}

.table-swipe img {
    max-width: 31px;
    width: 100%;

}

.table-row:nth-child(2n+2) {
    background-color: var(--color-white);
}

.table-column {
    width: 50%;
    padding: 0 10px;
}

/* treatments list */

/* treatment add */

.add-treatment .form-field {
    margin-bottom: 10px;
}

.emptyPreparations {
    padding: 20px 0;
    max-width: 325px;
    margin: 0 auto;
    border: 1px solid transparent;
    transition: border .3s ease;
    -webkit-transition: border .3s ease;
}

.add-preparate.error-validate .emptyPreparations {
    border-color: var(--color-alert);
}

.preparate-name {
    display: flex;
    align-items: center;
    width: 70%;
}

.preparate-name h4 {
    font-size: 1em;
    line-height: 1.25em;
    font-weight: 600;
}

.preparate-list .quarter-single:last-of-type {
    margin-bottom: 0;
}

/* treatment add */

/* 404 page */

.error-page .row {
    text-align: center;
    margin-top: 40px;
}

.error-page h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.error-page p {
    font-size: 1em;
    line-height: 22px;
    margin-bottom: 40px;
}

@media (min-width:768px) {
    .error-page h1 {
        font-size: 3.75em;
    }

    .error-page p {
        font-size: 1.375em;
        line-height: 26px;
    }
}

/* 404 page */

/* datepicker */

.field-input.input-datepicker {
    position: relative;
}

.field-input.input-datepicker::after {
    content: '';
    background: url('../images/calendar.svg');
    background-size: cover;
    width: 25px;
    height: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.datepicker {
    background: #FFF;
    font-family: 'EYInterstate', 'Arial', sans-serif;
    color: #2E2E38;
    font-size: 1em;
    font-weight: 300;
    line-height: 24px;
    border: 1px solid #C4C4CD;
    border-radius: 0;
    box-shadow: none;
    margin-top: 15px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2000;
}

.datepicker.-from-bottom- {
    -webkit-transform: none;
    transform: none;
}

.datepicker.active {
    -webkit-transform: none;
    transform: none;
}

.datepicker--pointer {
    display: none;
}

.datepicker--nav {
    background: var(--color-primary);
    color: #fff;
    padding: 0;
    border-radius: 10px 10px 0 0;
}

.datepicker--nav-title {
    padding: 12px 15px;
    border-radius: 0;
    font-size: 1.1875em;
    line-height: 22px;
}

.datepicker--nav-title:hover {
    background: #F6F6FA;
    color: #2E2E38;
}

.datepicker--nav-title.-disabled-:hover {
    background: #fff;
}

.datepicker--nav-action {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 0;
}

.datepicker--nav-action:hover {
    background: #F6F6FA;
}

.datepicker--nav-action svg {
    display: none;
}

.datepicker--nav-action:before {
    position: absolute;
    top: 50%;
    left: 50%;
}

.datepicker--nav-action[data-action="prev"]:before {
    content: '';
    background-image: url('../images/datepicker-arrow.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 15px;
    height: 18px;
    padding-right: 2px;
    -webkit-transform: translate(-50%, -50%) rotateZ(180deg);
    transform: translate(-50%, -50%) rotateZ(180deg);
}

.datepicker--nav-action[data-action="next"]:before {
    content: '';
    background-image: url('../images/datepicker-arrow.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 15px;
    height: 18px;
    padding-left: 3px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.datepicker--content {
    padding: 0;
}

.datepicker--cell {
    border-radius: 0;
}

.datepicker--cell.-focus- {
    background: #F6F6FA;
    color: #2E2E38;
}

.datepicker--cell.-current- {
    background-color: rgba(44, 154, 68, 0.4);
    color: #fff;
    border-radius: 50%;
}

.datepicker--cell.-current-.-focus- {
    background: #f6f5fb;
}

.datepicker--cell.-current-.-disabled-,
.datepicker--cell.-current-.-focus-.-disabled- {
    background: #fff;
    color: #96969b;
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current-,
.datepicker--cell.-selected-.-focus-,
.datepicker--cell.-selected-.-hovered-,
.datepicker--cell.-minimum-,
.datepicker--cell.-minimum-.-hovered-,
.datepicker--cell.-maximum-,
.datepicker--cell.-maximum-.-hovered- {
    background: #1a1a24;
    color: #fff;
}

.datepicker--cell.-disabled-,
.datepicker--cell.-disabled-.-hovered-,
.datepicker--cell.-disabled-.-focus-,
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #96969b;
    background: #fff;
}

.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
    color: #96969b;
    background: #fff;
}

.datepicker--cell-day.-other-month-.-focus-,
.datepicker--cell-year.-other-decade-.-focus- {
    background: #f6f5fb;
    color: #2E2E38;
}

.datepicker--years,
.datepicker--cells-years,
.datepicker--cells-months {
    height: 168px;
}

.datepicker--cell-year {
    width: 33.33%;
    height: 25%;
}

.datepicker--cell.-hovered-,
.datepicker--cell.-range- {
    background: #f6f5fb;
    color: #2E2E38;
}

.input-field.input-datepicker:before {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 30px;
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 2.5em;
    font-weight: 400;
    line-height: 1;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    pointer-events: none;
}

.input-field.input-datepicker.is-open:before {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.datepicker.datepicker-default {
    width: 480px;
    background: #F6F5FB;
    color: var(--color-gray-3);
    font-size: 1.125em;
    font-weight: 200;
    line-height: 24px;
    border: 0;
    margin-top: 0;
    z-index: 1050;
}

.datepicker.datepicker-default .datepicker--nav-title {
    padding: 18px 30px;
}

.datepicker.datepicker-default .datepicker--nav-title:hover {
    background: var(--color-primary);
    color: #fff;
}

.datepicker.datepicker-default .datepicker--nav-title.-disabled-,
.datepicker.datepicker-default .datepicker--nav-title.-disabled-:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.datepicker.datepicker-default .datepicker--nav-title i {
    color: #fff;
}

.datepicker.datepicker-default .datepicker--nav {
    border: 0;
}

.datepicker.datepicker-default .datepicker--days-names {
    background: #C7D8CB;
    margin: 0;
    padding: 5px 0;
    font-size: 1em;
    line-height: 22px;
}

.datepicker.datepicker-default .datepicker--day-name {
    color: #72777B;
    font-size: inherit;
    font-size: 1em;
    font-weight: 400;
    padding: 12px;
}

.datepicker.datepicker-default .datepicker--cell {
    height: 48px;
}

.datepicker.datepicker-default .datepicker--nav-action {
    color: var(--color-black);
    width: 60px;
    height: 60px;
}

.datepicker.datepicker-default .datepicker--nav-action:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px 10px 0 0;
}

.datepicker.datepicker-default .datepicker--nav-action:before {
    color: inherit;
}

.datepicker.datepicker-default .datepicker--years,
.datepicker.datepicker-default .datepicker--cells-years,
.datepicker.datepicker-default .datepicker--cells-months {
    height: 196px;
}

.datepicker.datepicker-default .datepicker--cell.-focus-,
.datepicker.datepicker-default .datepicker--cell.-current-.-focus-,
.datepicker.datepicker-default .datepicker--cell-day.-other-month-.-focus-,
.datepicker.datepicker-default .datepicker--cell-year.-other-decade-.-focus- {
    background: #C4C4CC;
    color: var(--color-white);
}

.datepicker.datepicker-default .datepicker--cell.-disabled-,
.datepicker.datepicker-default .datepicker--cell.-disabled-.-hovered-,
.datepicker.datepicker-default .datepicker--cell.-disabled-.-focus-,
.datepicker.datepicker-default .-disabled-.-focus-.datepicker--cell-day.-other-month-,
.datepicker.datepicker-default .-disabled-.-focus-.datepicker--cell-year.-other-decade-,
.datepicker.datepicker-default .datepicker--cell-day.-other-month-,
.datepicker.datepicker-default .datepicker--cell-year.-other-decade- {
    background: #F6F5FB;
    color: #96969b;
}

.datepicker.datepicker-default .datepicker--cell.-current- {
    /* background-color: rgba(44, 154, 68, 0.4); */
    background-color: #C4C4CC;
    color: var(--color-white);
    border-radius: 50%;
}

.datepicker.datepicker-default .datepicker--cell.datepicker--cell-day,
.datepicker.datepicker-default .datepicker--cell.datepicker--cell-month,
.datepicker.datepicker-default .datepicker--cell.datepicker--cell-year,
.datepicker.datepicker-default .datepicker--cell.datepicker--cell-day.-focus- {
    border-radius: 50%;
}

.datepicker.datepicker-default .datepicker--cell.-selected-,
.datepicker.datepicker-default .datepicker--cell.-selected-.-focus- {
    background-color: rgba(44, 154, 68, 0.4);
    color: var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
}

.datepicker {
    width: 220px;
    font-size: 0.875em;
    line-height: 1.25em;
    margin-top: 10px;
}

.datepicker--years,
.datepicker--cells-years,
.datepicker--cells-months {
    height: 144px;
}

.datepicker--nav-title {
    padding: 10px 12px;
}

.datepicker--nav-action {
    width: 40px;
    height: 40px;
}

.datepicker--nav-action:before {
    font-size: 1.25em;
}

.datepicker.datepicker-default {
    font-size: 1em;
    line-height: 1.25em;
}

.datepicker.datepicker-default .datepicker--nav-title {
    padding: 12px 24px;
}

.datepicker.datepicker-default .datepicker--nav-action {
    width: 48px;
    height: 48px;
}

.datepicker.datepicker-default .datepicker--day-name {
    font-size: 0.875em;
    line-height: 18px;
    padding: 11px;
}

.datepicker.datepicker-default .datepicker--cell {
    height: 40px;
}

.datepicker.datepicker-default .datepicker--years,
.datepicker.datepicker-default .datepicker--cells-years,
.datepicker.datepicker-default .datepicker--cells-months {
    height: 160px;
}

.input-field.input-datepicker:before {
    right: 24px;
    font-size: 34px;
}

.input-field.input-datepicker .input-default {
    padding-right: 70px;
}

.datepicker.active {
    -webkit-transition: top .2s ease-out, opacity .3s ease, transform .3s ease, left 0s 0s, -webkit-transform .3s ease;
    transition: top .2s ease-out, opacity .3s ease, transform .3s ease, left 0s 0s, -webkit-transform .3s ease;
}

.datepicker.datepicker-default {
    font-size: 1em;
    line-height: 22px;
}

.datepicker.datepicker-default .datepicker--day-name {
    font-size: 1em;
    line-height: 22px;
    padding: 9px 0;
}

.datepicker.datepicker-default .datepicker--cell {
    height: 45px;
    width: 14.2857142%;
}

@media (min-width:768px) {
    .datepicker.datepicker-default .datepicker--cell {
        height: 60px;
    }
}

.datepicker.datepicker-default .datepicker--years,
.datepicker.datepicker-default .datepicker--cells-years,
.datepicker.datepicker-default .datepicker--cells-months {
    height: 144px;
}

.field-control.datepicker-default {
    /* border:1px solid rgba(44, 154, 68, 0.4); */
    border: 1px solid var(--color-primary);
}

.field-control.datepicker-default[has-val],
.field-control.datepicker-default:focus {
    border-color: var(--color-primary);
}

.field-control.datepicker-default::placeholder,
.field-control.datepicker-default {
    color: var(--color-default);
}

/* datepicker */

.fx-core {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: calc(100vh - 76px);
    -webkit-transition: padding .5s ease;
    transition: padding .5s ease;
    ;
    /* padding-top: 25px; */
}

.fx-footer {
    margin-top: auto;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #fff;
}

.fx-footer .container .container,
.app-container .container .container {
    padding-left: 0;
    padding-right: 0;
}

.hide-sm {
    display: none;
}

.hide-lg.hide-in-app {
    display: none;
}

.app-separator {
    display: none;
}

.news-thumbnail.full.messages-header {
    background: var(--color-primary);
    display: none;
}

.news-thumbnail.full.messages-header::before {
    content: '';
    display: none;
}

.quarter-panel-content p,
.operator-panel-content p,
.sprayer-panel-content p {
    word-wrap: anywhere;
    padding: 0 10px;
}

.error-message {
    padding-bottom: 15px;
}

.navbar-button {
    margin-left: 25px;
}

.navbar-page-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.navbar-actions-show {
    display: none;
}

.navbar-textSize {
    display: flex;
    align-items: center;
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}

.navbar-textSize a {
    cursor: pointer;
}

.navbar-textSize>li>a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: var(--color-default);
    font-weight: 500;
    text-align: center;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-textSize>li>a:hover,
.navbar-textSize>li>a.active {
    background: var(--color-primary);
    color: #fff;
}

.navbar-textSize>li>a.textSize-small {
    font-size: 16px;
}

.navbar-textSize>li>a.textSize-medium {
    font-size: 20px;
}

.navbar-textSize>li>a.textSize-large {
    font-size: 22px;
}

/* desktop rwd */

@media (max-width:480px) {
    .tooltip {
        width: calc(100% - 45px);
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .navbar-page-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        background: #fff;
        width: 100%;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 0 12px rgba(0, 0, 0, .24);
        transform: translateX(calc(-100% + 52px));
        cursor: pointer;
        transition: transform .5s ease;
        -webkit-transition: transform .5s ease;
    }

    .navbar-page-actions.hidden {
        transform: translateX(-100%);
    }

    .navbar-page-actions.opened {
        transform: translateX(0);
    }

    .navbar-actions-show {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 32px;
        display: flex;
        align-items: center;
    }
}

@media (min-width:490px) {
    #modal_velte .modal-dialog {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

@media (min-width:649px) {
    .app-section-back .back-link {
        top: 50%;
    }

    /* .fx-core{
        padding-top: 15px;
    } */
    .app-section-back .back-link {
        top: 50%;
    }

    .btn-large,
    .btn-modal {
        font-weight: 500;
    }

    .select2.select2-container,
    .field-input,
    .container-lg .field-input,
    .container-lg .select2.select2-container,
    .container-lg .field-input.field-checker,
    .form-field.error-validate .text-required {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-field.field-row {
        justify-content: center;
    }

    .form-field.field-row .field-column {
        max-width: 217px;
        min-width: 217px;
    }

    .btn-default:not(.btn-footer) {
        max-width: 325px;
        min-width: 200px;
        font-size: 1.125em;
        line-height: 26px;
        padding: 18px 10px 18px;
        margin-left: auto;
        margin-right: auto;
        max-height: 65px;
        min-height: 65px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .btn-modal {
        min-height: 65px;
        max-height: 65px;
    }
}

@media (min-width:768px) {
    body {
        font-size: 1em;
    }

    .mb-40 {
        margin-bottom: 80px;
    }

    .panel-heading a {
        font-size: 0.5714em;
    }

    .message-content h1,
    .news-content h1,
    .message-content h2,
    .news-content h2,
    .message-content h3,
    .news-content h3,
    .message-content h4,
    .news-content h4,
    .message-content h5,
    .news-content h5,
    .message-content h6,
    .news-content h6 {
        font-weight: 600;
        color: var(--color-gray-3);
    }

    .message-content h1,
    .news-content h1 {
        font-size: 2.25em;
        line-height: 44px;
    }

    .message-content h2,
    .news-content h2 {
        font-size: 2em;
        line-height: 36px;
    }

    .message-content h3,
    .news-content h3 {
        font-size: 1.75em;
        line-height: 32px;
    }

    .message-content h4,
    .news-content h4 {
        font-size: 1.5em;
        line-height: 26px;
    }

    .message-content h5,
    .message-content h6,
    .news-content h5,
    .news-content h6 {
        font-size: 1.25em;
        line-height: 24px;
    }

    .news-content p,
    .message-content p {
        font-size: 1.125em;
        line-height: 22px;
        color: var(--color-gray-3);
    }

    .news-pager {
        padding-top: 40px;
    }

    .news-pager>li>a {
        font-size: 1.375em;
        line-height: 34px;
        padding: 17px 15px 18px;
    }

    .news-content p+.gallery-group {
        padding-top: 30px;
        padding-bottom: 40px;
        justify-content: center;
    }

    p.gallery-title {
        font-size: 1.4375em;
        line-height: 30px;
    }

    .news-content {
        padding-top: 40px;
    }

    .news-thumbnail.full {
        max-height: 330px;
        height: 330px;
        padding-top: 0;
    }

    .news-heading-title {
        font-size: 2.5em;
        line-height: 64px;
    }

    .news-heading-date {
        font-size: 1.375em;
        line-height: 30px;
    }

    /* .message-content h1,
    .message-content h2{
        font-size: 2em;
        line-height: 40px;
    } */
    /* .message-content h3,
    .message-content h4{
        font-size: 1.5em;
        line-height: px;
    } */
    .panel-content-inner {
        padding-right: 1em;
        margin-left: 1em;
        margin-right: 1em;
    }

    .quarter-panel-content,
    .operator-panel-content,
    .sprayer-panel-content {
        display: flex;
        flex-wrap: wrap;
    }

    .quarter-panel-content>div,
    .operator-panel-content>div,
    .sprayer-panel-content>div {
        width: 33.33333333%;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }

    .quarter-panel-content>div p {
        font-weight: 600;
        margin-bottom: 3px;
    }

    .quarter-panel-content ul,
    .sprayer-panel-content ul {
        margin-left: 0;
        text-align: center;
    }

    .quarter-panel-content>div:not(:nth-child(3n+3))::before,
    .operator-panel-content>div:not(:nth-child(3n+3))::before,
    .sprayer-panel-content>div:not(:nth-child(3n+3))::before {
        content: '';
        width: 1px;
        height: 100%;
        background-color: var(--color-primary);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .btn-remove {
        position: absolute;
        right: 0;
    }

    #modal_velte .modal-dialog {
        transform: rotateZ(0deg);
        max-width: 1200px;
        min-width: auto;
        width: 100%;
    }

    .app-section-back .app-section-title {
        padding-left: 0;
    }
}

@media (min-width:991px) {

    .message-heading-icon {
        position: absolute;
        right: -9px;
        top: -9px;
    }

    .container,
    .footer-blocks {
        max-width: 920px;
        margin: 0 auto;
    }

    .container.container-small,
    .treatments-section {
        max-width: 870px;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    h1,
    .h1 {
        font-size: 3.125em;
        line-height: 60px;
    }

    h2,
    .h2 {
        font-size: 2.5em;
        line-height: 56px;
    }

    h3,
    .h3 {
        font-size: 1.75em;
        line-height: 32px;
    }

    h4,
    .h4 {
        font-size: 1.625em;
        line-height: 30px;
    }

    h5,
    .h5,
    h6,
    .h6,
    .post-block-body h3 {
        font-size: 1.375em;
        line-height: 30px;
    }

    .app-section-title {
        font-weight: 600;
    }

    .btn-default.btn-footer {
        font-size: 0.875em;
        line-height: 19px;
        max-width: 200px;
        min-width: 150px;
        min-height: auto;
    }

    .footer-author p a,
    .footer-copyrights,
    .linked-content-date,
    .post-slide-date {
        font-size: 1em;
        line-height: 16px;
    }

    .header-slide {
        padding-bottom: 15%;
    }

    .post-blocks-row>div {
        min-width: 45%;
        max-width: 45%;
        width: 45%;
    }

    .post-blocks-row {
        justify-content: space-evenly;
    }

    .post-blocks-row>div {
        padding-right: 50px;
        padding-bottom: 50px;
    }

    .navbar-nav {
        text-align: center;
    }

    .post-block-body p {
        font-size: 0.875em;
        line-height: 17px;
    }

    .app-section-button {
        display: flex;
        justify-content: center;
    }

    .btn-default {
        max-width: 325px;
        min-width: 200px;
        font-size: 1.125em;
        line-height: 26px;
        padding: 13px 10px 14px;
        margin-left: auto;
        margin-right: auto;
        max-height: 65px;
        min-height: 65px;
    }

    .news-content .gallery-group>div {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
        padding-right: 58px;
    }

    .gallery-group>div {
        min-width: 20%;
        max-width: 20%;
        width: 20%;
    }

    .app-buttons-row {
        justify-content: center;
    }

    .app-buttons-row>a {
        width: auto;
        margin: 0 20px;
    }

    .header-slider .slick-dots>li>button {
        width: 13px;
        height: 13px;
        cursor: pointer;
    }

    .post-slide {
        width: auto;
    }

    .post-slide-title,
    .footer-block-title {
        font-size: 1.125em;
        line-height: 24px;
    }

    .post-slide-description,
    .footer-block-body p,
    .footer-block-body p a {
        font-size: 0.875em;
        line-height: 19px;
    }

    .modal {
        top: 50%;
        left: 50%;
        width: 100%;
        height: auto;
        transform: translateX(-50%) translateY(-50%);
        border-radius: 0;
    }

    .modal-login .modal-flex {
        flex-direction: column;
    }

    .modal-login .modal-pretitle {
        position: relative;
        width: 100%;
        max-width: 640px;
        top: -45px;
        /* border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        background-color: rgba(48, 48, 48,0.9); */
    }

    .modal-login .modal-dialog {
        border-radius: 40px;
        background-color: rgba(48, 48, 48, 0.9);
        position: relative;
    }

    .modal-login {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.6);
    }

    body.nav-active .modal-login {
        background-color: var(--color-primary);
    }

    .modal.modal-white .modal-dialog {
        padding: 30px 20px;
    }

    .modal-flex {
        min-height: 100vh;
    }

    .modal-title {
        padding-bottom: 20px;
    }

    .modal-login .modal-close {
        top: 15px;
        right: 15px;
    }

    .modal-dialog {
        max-width: 100%;
        padding-top: 10px;
        padding-bottom: 30px;
        max-width: 640px;
    }

    .modal-login-submit .btn-default.field-submit {
        padding: 10px 20px;
    }

    .modal-login-submit .btn-default,
    .modal-footer .btn-default {
        max-width: 100%;
    }

    .header-slider .slick-arrow {
        background-size: 16px;
    }

    .header-slider .slick-arrow {
        width: 36px;
        height: 36px;
    }

    .linked-content-main {
        padding-left: 35px;
    }

    .select2.select2-container,
    .field-input,
    .container-lg .field-input,
    .container-lg .select2.select2-container,
    .container-lg .field-input.field-checker,
    .form-field.error-validate .text-required {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .modal .select2.select2-container,
    .modal .field-input,
    .field-input.field-checker {
        max-width: 100%;
    }

    .form-field.field-row {
        justify-content: center;
    }

    .form-field .field-column {
        max-width: 220px;
        min-width: 220px;
        width: 220px;
    }

    .app-section-title.no-margin {
        margin-bottom: 25px;
    }

    .btn-submit.btn-modal {
        margin-top: 7px;
    }

    .form-subtitle.title-default,
    .form-submit.error-validate p {
        text-align: center;
    }

    .nav-register-tabs>li {
        min-width: 25%;
        max-width: 25%;
        width: 25%;
    }

    .news-pager>li {
        min-width: 18%;
        max-width: 18%;
        width: 18%;
    }

    .fx-lg {
        display: flex;
        justify-content: center;
    }

    .fx-lg .btn-default {
        margin-top: 15px;
    }

    .tooltip {
        max-width: 370px;
    }

    .treatmens-filters .nav-register-tabs {
        width: 50%;
    }

    /* .table-row.swipe {
        overflow: hidden;
    } */

    .table-row {
        padding: 5px 5px;
        min-height: 110px;
    }

    .form-field .field-heading {
        text-align: center;
    }

    .footer-blocks>div:last-of-type {
        min-width: 37%;
        max-width: 37%;
        width: 37%;
    }

    .footer-blocks>div:first-of-type {
        min-width: 63%;
        max-width: 63%;
        width: 63%;
    }

    .footer-copyrights {
        margin: 0;
        padding: 0;
    }

    .footer-copyrights>div {
        padding: 0;
    }

    .footer-block-nav,
    .footer-block-body {
        display: flex;
        justify-content: flex-start;
    }

    .footer-block-body {
        flex-direction: column;
    }

    .app-section-content>.news-heading,
    .message-heading {
        display: none;
    }

    .news-thumbnail.full .back-link {
        left: 37px;
        width: 33px;
        height: 53px;
        background-image: url(../images/chevron-gray.svg);
    }

    .news-thumbnail.full.messages-header .back-link {
        left: 37px;
        width: 25px;
        height: 41px;
        background-image: url(../images/chevron-white.svg);
    }

    .footer-block-nav li+li {
        margin-left: 30px;
    }

    .news-content h2 {
        font-size: 2.375em;
        line-height: 48px;
        font-weight: 600;
        color: var(--color-gray-3);
    }

    .news-content p,
    .message-content p {
        font-size: 1.25em;
        line-height: 24px;
    }

    .news-pager {
        padding-top: 70px;
    }

    .news-pager>li>a {
        font-size: 1.5em;
        line-height: 37px;
        padding: 22px 15px 23px;
    }

    .news-content p+.gallery-group {
        padding-top: 40px;
        padding-bottom: 60px;
        justify-content: center;
    }

    p.gallery-title {
        font-size: 1.6875em;
        line-height: 40px;
    }

    .news-content {
        padding-top: 60px;
    }

    .news-thumbnail.full {
        max-height: 300px;
        height: 230px;
        padding-top: 0;
    }

    .news-thumbnail.full .news-heading {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        position: relative;
    }

    .news-thumbnail.full.messages-header .news-heading {
        justify-content: space-between;
    }

    .news-thumbnail.full::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.34);
    }

    .news-thumbnail.full .news-heading-title {
        color: var(--color-white);
        font-size: 3.125em;
        line-height: 64px;
        font-weight: 500;
    }

    .news-thumbnail.full .news-heading-date {
        color: var(--color-white);
        font-size: 1.125em;
        line-height: px;
    }

    .news-thumbnail.full.messages-header .news-heading-date {
        display: flex;
    }

    .news-thumbnail.full.messages-header .news-heading-date p {
        margin: 0 25px;
    }

    .app-container {
        border-bottom: 2px solid var(--color-gray);
        padding: 35px 0;
    }

    .app-container.align-top .app-section-content {
        padding-top: 0;
    }

    .app-container .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .app-container.align-top .container {
        align-items: flex-start;
        position: relative;
        overflow: hidden;
    }

    .app-container .app-entry-heading {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .app-container .app-section-button {
        padding-top: 0;
    }

    .app-container .app-entry-heading {
        font-size: 1em;
        line-height: 34px;
    }

    .app-container .app-entry-heading p {
        font-size: 1.5em;
    }

    .app-container .app-section-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .app-section-content.flex-col-lg {
        flex-direction: column;
    }

    .app-container .app-section-content .app-section-button+.app-section-button {
        margin-left: 40px;
    }

    .app-container .app-entry {
        padding-top: 0;
    }

    .hide-lg {
        display: none;
    }

    .hide-sm,
    .app-separator {
        display: block;
    }

    .header-slider .slick-dots {
        display: none !important;
    }

    .footer-blocks {
        flex-direction: row-reverse;
    }

    .app-section.blog-posts-section .app-section-content {
        border-bottom: 0;
    }

    .download-app-section .app-buttons-row p {
        color: var(--color-primary);
        text-align: right;
        margin-right: 50px;
    }

    .app-container.align-top .app-section-button {
        margin-top: 50px;
        width: 100%;
    }

    .app-container.align-top .app-section-button.small-mt {
        margin-top: 15px;
    }

    .app-container.align-top .app-section {
        width: 45%;
    }

    .app-container.align-top .app-separator {
        width: 1px;
        height: 100%;
        background-color: var(--color-gray);
        position: absolute;
        left: 50%;
        top: 100px;
        transform: translateX(-50%);
    }

    .linked-content-item {
        padding-right: 40px;
    }

    .select2-link2.select2-add .btn-default {
        max-width: 100%;
    }

    .app-section-body.section-sortable {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 78px;
    }

    .app-section-body.section-sortable .gallery-group:first-of-type {
        width: 27.84%;
        order: 2;
        flex-direction: column;
        padding-top: 0;
    }

    .app-section-body.section-sortable .gallery-group:first-of-type .gallery-item {
        margin-bottom: 95px;
    }

    .app-section-body.section-sortable .gallery-group:first-of-type>div {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .app-section-body.section-sortable .message-content {
        width: 59.88%;
        order: 1;
        padding-top: 0;
    }

    .app-section-body.section-sortable .gallery-group:last-of-type {
        width: 100%;
        order: 3;
        margin-top: 70px;
        justify-content: center;
    }

    .app-section-body.section-sortable .gallery-group:last-of-type>div {
        min-width: 33.33333333%;
        max-width: 33.33333333%;
        width: 33.33333333%;
        padding-right: 58px;
        padding-bottom: 58px;
    }

    /* .message-content h4{
        font-size: 3em;
        line-height: 68px;
        font-weight: 600;
    } */
    .message-content p:not(:first-child) img {
        margin: 50px 0;
    }

    .messages-header-image,
    .messages-header-placeholder {
        width: 15%;
    }

    .news-thumbnail.full.messages-header {
        display: block;
    }

    .news-thumbnail.full.messages-header p {
        color: var(--color-white);
        font-size: 1em;
        line-height: 24px;
    }

    .news-thumbnail.full.messages-header .news-heading-inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .messages-header-image {
        border-radius: 5px;
        border: 2px solid var(--color-white);
        position: relative;
    }

    .messages-header-icon.message-heading-icon .message-badge {
        width: 44px;
        height: 44px;
        top: -8px;
        right: -8px;
        border-width: 2px;
    }

    .news-thumbnail .message-disease-img {
        max-width: 70px;
        margin: 0 auto;
    }

    .messages-header-icon.message-heading-icon .message-badge.color-1 {
        background-color: var(--color-green);
    }

    .messages-header-icon.message-heading-icon .message-badge.color-2 {
        background-color: var(--color-red);
    }

    .messages-header-icon.message-heading-icon .message-badge img {
        max-height: 35px;
        max-width: 35px;
    }

    .app-section-content.no-pb {
        padding-top: 0;
    }

    .chart-prev {
        left: 10px;
    }

    .chart-next {
        right: 10px;
    }

    .chart-arrow {
        padding: 15px 5px;
    }

    .btn-default.btn-auto {
        /* padding: 21px 30px 20px; */
        padding: 0;
        display: flex;
        align-items: center;
    }

    .btn-default,
    .btn-default.btn-small {
        text-transform: uppercase;
        font-size: 1.125em;
        line-height: 26px;
        font-weight: 500;
        padding: 0 15px;
    }

    .news-thumbnail.full .news-heading-title {
        font-size: 2.5em;
        line-height: 54px;
    }

    .messages-header-image,
    .messages-header-placeholder {
        width: 20%;
        max-width: 200px;
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
    }

    .messages-header-image {
        height: 130px;
        max-width: 130px;
        width: 100%;
    }

    /* .package-offer, */
    /* .package-summary, */
    .treatment-section {
        max-width: 720px;
        margin: 0 auto;
    }

    .sprayer-list,
    .quarter-list {
        max-height: 28vh;
        scrollbar-width: thin;
    }

    .linked-content-item+.linked-content-item {
        padding-top: 25px;
        margin-top: 25px;
    }

    .linked-content-title {
        font-size: 1.25em;
        line-height: px;
    }

    .linked-content-description {
        font-size: 0.875em;
        line-height: 1.25em;
    }

    .post-block-main {
        padding-top: 11px;
    }

    .post-block-body h3 {
        padding-bottom: 14px;
    }

    .post-slide-date {
        font-size: 1em;
        line-height: 22px;
    }

    .post-slide-title {
        font-size: 1.4375em;
        line-height: 33px;
    }

    .navbar-collapse-inner::before,
    .navbar-collapse-inner {
        border-radius: 0;
    }
}

@media (min-width:1199px) {

    .container,
    .footer-blocks {
        max-width: 1120px;
    }

    .btn-default {
        min-width: 285px;
    }

    .header-slide-title {
        font-size: 3.125em;
        line-height: 60px;
        font-weight: 900;
    }

    .navbar-default {
        padding: 8px 0;
    }

    .navbar-logo img {
        width: 271px;
        height: 62px;
        max-height: 100%;
    }

    .navbar-logo {
        height: 62px;
    }

    .news-content h2 {
        font-size: 2.6875em;
        line-height: 54px;
    }

    .news-content {
        padding-top: 80px;
    }

    .news-content p,
    .message-content p {
        font-size: 1.375em;
        line-height: 27px;
    }

    .news-pager {
        padding-top: 100px;
    }

    .news-pager>li>a {
        font-size: 1.125em;
        line-height: 24px;
        padding: 13px 10px 14px;
    }

    .news-content p+.gallery-group {
        padding-top: 100px;
        padding-bottom: 80px;
        justify-content: center;
    }

    p.gallery-title {
        font-size: 1.5em;
        line-height: px;
    }

    .news-content {
        padding-top: 60px;
    }

    .news-thumbnail.full {
        max-height: 277px;
        height: 277px;
        padding-top: 0;
    }

    .news-thumbnail.full .news-heading-title {
        color: var(--color-white);
        font-size: 3em;
        line-height: 52px;
        font-weight: 500;
        padding: 5px 0;
    }

    .news-thumbnail.full .news-heading-date {
        color: var(--color-white);
        font-size: 1em;
        line-height: 35px;
    }

    .news-thumbnail .message-disease-img {
        max-width: 80px;
    }

    .news-thumbnail.full.messages-header p {
        color: var(--color-white);
        font-size: 1.25em;
        line-height: 30px;
    }

    .news-thumbnail.full {
        height: 270px;
    }

    .messages-header-image {
        height: 170px;
        max-width: 170px;
        width: 100%;
    }

    .messages-header-placeholder {
        height: 170px;
        width: 100%;
    }

    body.nav-active,
    body.nav-active .navbar-nav,
    body.modal-open {
        margin-right: 17px;
    }

    body.nav-active .navbar-collapse-inner::before {
        padding-right: 43px;
    }

}

@media (min-width:1600px) {

    .container,
    .footer-blocks {
        max-width: 1300px;
    }

    .app-container .app-section-content .app-section-button+.app-section-button {
        margin-left: 68px;
    }

    .news-content h2 {
        font-size: 3em;
        line-height: 68px;
    }

    .news-content {
        padding-top: 100px;
    }

    .news-thumbnail.full.messages-header .back-link {
        width: 33px;
        height: 53px;
    }

    .news-thumbnail.full {
        height: 300px;
    }

    .messages-header-image {
        height: 200px;
        max-width: 200px;
        width: 100%;
    }

    .news-thumbnail .message-disease-img {
        max-width: 120px;
    }
}

@media (min-width:1921px) {

    .container,
    .footer-blocks {
        max-width: 1400px;
    }
}

#maintenance-popup {
    height: calc(100% + 1px);
    width: calc(100% + 1px);
    margin-top: 0 !important;
}

.close-wrapp {
    top: 0;
    right: 20px;
    position: absolute;
}

.nav-filters-btn-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
}

.nav-filters-btn-outer .nav-filter-btn {
    width: 50%;
}

@media (max-width:768px) {
    .nav-treatment-filters {
        flex-direction: column;
    }

    .treatmens-filters .nav-register-tabs {
        width: 100%;
    }

    .nav-filters-btn-outer {
        width: 100%;
    }

    .nav-filters-btn-outer .nav-filter-btn {
        font-size: 13px;
    }

    .nav-filters-btn-outer .nav-filter-btn:first-child {
        margin-right: 6px;
        margin-left: 0;
    }

    .nav-filters-btn-outer .nav-filter-btn:last-child {
        margin-left: 6px;
        margin-right: 0;
    }

    .news-section,
    .news-content {
        display: flex;
        flex-direction: column;
    }

    .news-section .message-content,
    .news-content .message-content {
        order: 1;
    }

    .news-section .gallery-group,
    .news-content .gallery-group {
        order: 2;
    }

    .news-section .gallery-group>div,
    .news-content .gallery-group>div {
        margin-bottom: 20px;
    }
}


/* MOBILE HORIZONTAL */

@media screen and (orientation:landscape) and (max-height: 560px) {
    .navbar-default {
        padding: 5px 0;
    }

    .navbar-logo img {
        width: 177px;
        max-height: 30px;
        margin-left: 0;
    }

    .header-slide {
        padding-bottom: 23%;
    }

    .posts-slider .slick-list {
        padding-left: 0;
    }

    .post-slide {
        margin-left: auto;
        margin-right: auto;
    }

    .posts-slider-row {
        max-width: 100%;
        margin: 0 auto;
    }

    .chart-slider-modal .slick-arrow.slick-prev {
        left: -20px;
    }

    .chart-slider-modal .slick-arrow.slick-next {
        right: -20px;
    }

    .chart-slider-modal .slick-arrow {
        width: 28px;
        height: 53px;
    }

    .modal.modal-white .modal-dialog {
        padding: 5px 5px 5px;
    }

    .filter-heading {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .filter-heading .select-container {
        width: 48%;
    }

    .app-section-filter {
        padding: 9px 0 0;
        top: 60px;
    }

    .select2-container--default .select2-results>.select2-results__options {
        max-height: 220px;
    }

    #modal_velte .modal-dialog {
        transform: none;
    }

    #modal_velte .modal-content {
        margin-top: 0;
    }

    #modal_velte .modal-header {
        padding: 0px 0px 0px;
    }

    #modal_velte {
        z-index: 999999;
    }
}

.velteTabs {
    opacity: 0;
}

#modal_velte .slick-track,
#modal_velte .slick-slider,
#modal_velte .slick-slide,
#modal_velte .chart-iframe.iframe-modal,
#modal_velte .chart-iframe.iframe-modal img {
    touch-action: auto !important;
}

@media (max-width:991px) {
    .evidence-section-front {
        padding-top: 30px;
    }
}

.informator-search-form form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 75%;
    margin: 0 auto 40px;
}

.informator-search-form form input {
    width: 70%;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    box-shadow: 0;
    outline: 0;
    transition: border .3s ease;
    color: var(--color-default);
    font-size: 1.125em;
    padding: 9px 15px;
    min-height: 65px;
    max-height: 65px;
}

.informator-search-form form button {
    width: 30%;
}

@media (max-width:768px) {
    .informator-search-form form {
        max-width: 100%;
    }
}

/* pdf button */
.pdfp_fullscreen button {
    border: 0;
    max-width: 325px;
    min-width: 200px;
    line-height: 26px;
    margin-left: auto;
    margin-right: auto;
    min-height: 65px;
    text-decoration: none !important;
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    border-radius: 15px;
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
    padding: 22px 5px 24px;
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    cursor: pointer;
    max-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdfp_fullscreen button:hover {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .12);
}

/* pdf button */

.table-row.disabled {
    position: relative;
    pointer-events: none;
    display: none;
}

.table-row.disabled::before {
    content: 'Zabieg usunięty';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 36px;
    color: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.table-row .table-swipe {
    flex-direction: row;
    padding: 0;
}

.table-row .table-swipe a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
}

.treatments-print {
    padding-bottom: 20px;
}

.nav-treatments-sort {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.nav-treatments-sort .select2.select2-container {
    margin: 0;
}

.select2-selection__choice:only-child::after {
    display: none;
}