@charset "UTF-8";
@font-face {
    font-family: "Thin_foma";
    src: url("/fonts/Thin_foma.woff2") format("woff2");
    src: url("/fonts/Thin_foma.woff") format("woff");
    src: url("/fonts/Thin_foma.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto Light";
    src: url("/fonts/Roboto-Light.woff2") format("woff2");
    src: url("/fonts/Roboto-Light.woff") format("woff");
}

@font-face {
    font-family: "montserratregular";
    src: url("/fonts/montserrat-regular-webfont.woff2") format("woff2");
    src: url("/fonts/montserrat-regular-webfont.woff") format("woff");
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}


/*
 * 3DX
 */

.hamburger--3dx .hamburger-box {
    perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}


/*
 * 3DX Reverse
 */

.hamburger--3dx-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}


/*
 * 3DY
 */

.hamburger--3dy .hamburger-box {
    perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}


/*
 * 3DY Reverse
 */

.hamburger--3dy-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}


/*
 * 3DXY
 */

.hamburger--3dxy .hamburger-box {
    perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}


/*
 * 3DXY Reverse
 */

.hamburger--3dxy-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}


/*
 * Arrow
 */

.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}


/*
 * Arrow Right
 */

.hamburger--arrow-r.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}


/*
 * Arrow Alt
 */

.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*
 * Arrow Alt Right
 */

.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*
 * Arrow Turn
 */

.hamburger--arrowturn.is-active .hamburger-inner {
    transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}


/*
 * Arrow Turn Right
 */

.hamburger--arrowturn-r.is-active .hamburger-inner {
    transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}


/*
 * Boring
 */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}


/*
 * Collapse
 */

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Collapse Reverse
 */

.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Elastic
 */

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}


/*
 * Elastic Reverse
 */

.hamburger--elastic-r .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s;
}


/*
 * Emphatic
 */

.hamburger--emphatic {
    overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -80px;
    top: -80px;
    transform: translate3d(80px, 80px, 0) rotate(45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -80px;
    top: -80px;
    transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}


/*
 * Emphatic Reverse
 */

.hamburger--emphatic-r {
    overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -80px;
    top: 80px;
    transform: translate3d(80px, -80px, 0) rotate(-45deg);
    transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -80px;
    top: 80px;
    transform: translate3d(-80px, -80px, 0) rotate(45deg);
    transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}


/*
 * Minus
 */

.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
    transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
    opacity: 0;
    transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
    top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
    bottom: 0;
}


/*
 * Slider
 */

.hamburger--slider .hamburger-inner {
    top: 2px;
}

.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}


/*
 * Slider Reverse
 */

.hamburger--slider-r .hamburger-inner {
    top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg);
}


/*
 * Spin
 */

.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Spin Reverse
 */

.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
    transform: rotate(-225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Spring
 */

.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}


/*
 * Spring Reverse
 */

.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Stand
 */

.hamburger--stand .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
    transform: rotate(90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Stand Reverse
 */

.hamburger--stand-r .hamburger-inner {
    transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
    transform: rotate(-90deg);
    background-color: transparent !important;
    transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Squeeze
 */

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Vortex
 */

.hamburger--vortex .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}


/*
 * Vortex Reverse
 */

.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

@-webkit-keyframes fadeInDown {
    from {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
}

.swal2-popup.swal2-toast {
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0.75rem 0.25rem;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.swal2-popup.swal2-toast .swal2-header {
    flex-direction: row;
    padding: 0;
}

.swal2-popup.swal2-toast .swal2-title {
    flex-grow: 1;
    justify-content: flex-start;
    margin: 0 0.6em;
    font-size: 0.875rem;
}

.swal2-popup.swal2-toast .swal2-footer {
    margin: 0.5em 0 0;
    padding: 0.5em 0 0;
    font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
    position: static;
    width: 0.8em;
    height: 0.8em;
    line-height: 0.8;
}

.swal2-popup.swal2-toast .swal2-content {
    justify-content: flex-start;
    padding: 0;
    font-size: 0.875rem;
}

.swal2-popup.swal2-toast .swal2-icon {
    width: 2em;
    min-width: 2em;
    height: 2em;
    margin: 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
        font-size: 0.25em;
    }
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    top: 0.875em;
    width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
    flex-basis: auto !important;
    width: auto;
    height: auto;
    margin: 0 0.3125em;
    padding: 0;
}

.swal2-popup.swal2-toast .swal2-styled {
    margin: 0.125em 0.3125em;
    padding: 0.3125em 0.625em;
    font-size: 0.875rem;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-popup.swal2-toast .swal2-success {
    border-color: #28a745;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 1.6em;
    height: 3em;
    transform: rotate(45deg);
    border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -0.8em;
    left: -0.5em;
    transform: rotate(-45deg);
    transform-origin: 2em 2em;
    border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -0.25em;
    left: 0.9375em;
    transform-origin: 0 1.5em;
    border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
    top: 0;
    left: 0.4375em;
    width: 0.4375em;
    height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
    height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
    -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
    animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
    -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
    animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
    -webkit-animation: swal2-toast-show 0.5s;
    animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
    -webkit-animation: swal2-toast-hide 0.1s forwards;
    animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
    display: flex;
    position: fixed;
    z-index: 1060;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.625em;
    overflow-x: hidden;
    transition: background-color 0.5s;
    -webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, 0.5);
}

.swal2-container.swal2-backdrop-hide {
    background: transparent !important;
}

.swal2-container.swal2-top {
    align-items: flex-start;
}

.swal2-container.swal2-top-start,
.swal2-container.swal2-top-left {
    align-items: flex-start;
    justify-content: flex-start;
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right {
    align-items: flex-start;
    justify-content: flex-end;
}

.swal2-container.swal2-center {
    align-items: center;
}

.swal2-container.swal2-center-start,
.swal2-container.swal2-center-left {
    align-items: center;
    justify-content: flex-start;
}

.swal2-container.swal2-center-end,
.swal2-container.swal2-center-right {
    align-items: center;
    justify-content: flex-end;
}

.swal2-container.swal2-bottom {
    align-items: flex-end;
}

.swal2-container.swal2-bottom-start,
.swal2-container.swal2-bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
}

.swal2-container.swal2-bottom-end,
.swal2-container.swal2-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
}

.swal2-container.swal2-bottom> :first-child,
.swal2-container.swal2-bottom-start> :first-child,
.swal2-container.swal2-bottom-left> :first-child,
.swal2-container.swal2-bottom-end> :first-child,
.swal2-container.swal2-bottom-right> :first-child {
    margin-top: auto;
}

.swal2-container.swal2-grow-fullscreen>.swal2-modal {
    display: flex !important;
    flex: 1;
    align-self: stretch;
    justify-content: center;
}

.swal2-container.swal2-grow-row>.swal2-modal {
    display: flex !important;
    flex: 1;
    align-content: center;
    justify-content: center;
}

.swal2-container.swal2-grow-column {
    flex: 1;
    flex-direction: column;
}

.swal2-container.swal2-grow-column.swal2-top,
.swal2-container.swal2-grow-column.swal2-center,
.swal2-container.swal2-grow-column.swal2-bottom {
    align-items: center;
}

.swal2-container.swal2-grow-column.swal2-top-start,
.swal2-container.swal2-grow-column.swal2-center-start,
.swal2-container.swal2-grow-column.swal2-bottom-start,
.swal2-container.swal2-grow-column.swal2-top-left,
.swal2-container.swal2-grow-column.swal2-center-left,
.swal2-container.swal2-grow-column.swal2-bottom-left {
    align-items: flex-start;
}

.swal2-container.swal2-grow-column.swal2-top-end,
.swal2-container.swal2-grow-column.swal2-center-end,
.swal2-container.swal2-grow-column.swal2-bottom-end,
.swal2-container.swal2-grow-column.swal2-top-right,
.swal2-container.swal2-grow-column.swal2-center-right,
.swal2-container.swal2-grow-column.swal2-bottom-right {
    align-items: flex-end;
}

.swal2-container.swal2-grow-column>.swal2-modal {
    display: flex !important;
    flex: 1;
    align-content: center;
    justify-content: center;
}

.swal2-container.swal2-no-transition {
    transition: none !important;
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal {
    margin: auto;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .swal2-container .swal2-modal {
        margin: 0 !important;
    }
}

.swal2-popup {
    display: none;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    width: 32em;
    max-width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.3rem;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.swal2-popup:focus {
    outline: none;
}

.swal2-popup.swal2-loading {
    overflow-y: hidden;
}

.swal2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.8em;
}

.swal2-title {
    position: relative;
    max-width: 100%;
    margin: 0 0 0.4em;
    padding: 0;
    color: #595959;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.swal2-actions {
    display: flex;
    z-index: 1;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 1.25em auto 0;
    padding: 0 1.6em;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-loader {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.2em;
    height: 2.2em;
    margin: 0 1.875em;
    -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border-width: 0.25em;
    border-style: solid;
    border-radius: 100%;
    border-color: #2778c4 transparent #2778c4 transparent;
}

.swal2-styled {
    margin: 0.3125em;
    padding: 0.625em 1.1em;
    box-shadow: none;
    font-weight: 500;
}

.swal2-styled:not([disabled]) {
    cursor: pointer;
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #007bff;
    color: #fff;
    font-size: 1.0625em;
}

.swal2-styled.swal2-deny {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #d14529;
    color: #fff;
    font-size: 1.0625em;
}

.swal2-styled.swal2-cancel {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #6c757d;
    color: #fff;
    font-size: 1.0625em;
}

.swal2-styled:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-styled::-moz-focus-inner {
    border: 0;
}

.swal2-footer {
    justify-content: center;
    margin: 1.25em 0 0;
    padding: 1em 0 0;
    border-top: 1px solid #eee;
    color: #545454;
    font-size: 1em;
}

.swal2-timer-progress-bar-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0.25em;
    overflow: hidden;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.swal2-timer-progress-bar {
    width: 100%;
    height: 0.25em;
    background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
    max-width: 100%;
    margin: 1.25em auto;
}

.swal2-close {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    padding: 0;
    overflow: hidden;
    transition: color 0.1s ease-out;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    font-family: serif;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.swal2-close:hover {
    transform: none;
    background: transparent;
    color: #000;
}

.swal2-close:focus {
    outline: none;
    box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-close::-moz-focus-inner {
    border: 0;
}

.swal2-content {
    z-index: 1;
    justify-content: center;
    margin: 0;
    padding: 0 1.6em;
    color: #545454;
    font-size: 1.125em;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
    margin: 1em auto;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background: inherit;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
    color: inherit;
    font-size: 1rem;
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
    border-color: #dc3545 !important;
    box-shadow: 0 0 2px #dc3545 !important;
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
    border: 1px solid #b4dbed;
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-input::-moz-placeholder,
.swal2-file::-moz-placeholder,
.swal2-textarea::-moz-placeholder {
    color: #cccccc;
}

.swal2-input:-ms-input-placeholder,
.swal2-file:-ms-input-placeholder,
.swal2-textarea:-ms-input-placeholder {
    color: #cccccc;
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
    color: #cccccc;
}

.swal2-range {
    margin: 1em auto;
    background: #fff;
}

.swal2-range input {
    width: 80%;
}

.swal2-range output {
    width: 20%;
    color: inherit;
    font-weight: 600;
    text-align: center;
}

.swal2-range input,
.swal2-range output {
    height: 2.625em;
    padding: 0;
    font-size: 1rem;
    line-height: 2.625em;
}

.swal2-input {
    height: 2.625em;
    padding: 0.375rem 0.75rem;
}

.swal2-input[type=number] {
    max-width: 10em;
}

.swal2-file {
    background: inherit;
    font-size: 1rem;
}

.swal2-textarea {
    height: 6.75em;
    padding: 0.75em;
}

.swal2-select {
    min-width: 50%;
    max-width: 100%;
    padding: 0.375em 0.625em;
    background: inherit;
    color: inherit;
    font-size: 1rem;
}

.swal2-radio,
.swal2-checkbox {
    align-items: center;
    justify-content: center;
    background: #fff;
    color: inherit;
}

.swal2-radio label,
.swal2-checkbox label {
    margin: 0 0.6em;
    font-size: 1rem;
}

.swal2-radio input,
.swal2-checkbox input {
    margin: 0 0.4em;
}

.swal2-input-label {
    display: flex;
    justify-content: center;
    margin: 1em auto;
}

.swal2-validation-message {
    align-items: center;
    justify-content: center;
    margin: 0 -2.7em;
    padding: 0.625em;
    overflow: hidden;
    background: #f0f0f0;
    color: #666666;
    font-size: 1em;
    font-weight: 300;
}

.swal2-validation-message::before {
    content: "!";
    display: inline-block;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    margin: 0 0.625em;
    border-radius: 50%;
    background-color: #f27474;
    color: #fff;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center;
}

.swal2-icon {
    position: relative;
    box-sizing: content-box;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: 0.25em solid transparent;
    border-radius: 50%;
    border-color: #000;
    font-family: inherit;
    line-height: 5em;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swal2-icon .swal2-icon-content {
    display: flex;
    align-items: center;
    font-size: 3.75em;
}

.swal2-icon.swal2-error {
    border-color: #dc3545;
    color: #dc3545;
}

.swal2-icon.swal2-error .swal2-x-mark {
    position: relative;
    flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    display: block;
    position: absolute;
    top: 2.3125em;
    width: 2.9375em;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #dc3545;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: 1.0625em;
    transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: 1em;
    transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
    -webkit-animation: swal2-animate-error-icon 0.5s;
    animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
    -webkit-animation: swal2-animate-error-x-mark 0.5s;
    animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
    border-color: #ffca2b;
    color: #ffc107;
}

.swal2-icon.swal2-info {
    border-color: #4cd3e9;
    color: #17a2b8;
}

.swal2-icon.swal2-question {
    border-color: #a1a8ae;
    color: #6c757d;
}

.swal2-icon.swal2-success {
    border-color: #28a745;
    color: #28a745;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 3.75em;
    height: 7.5em;
    transform: rotate(45deg);
    border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -0.4375em;
    left: -2.0635em;
    transform: rotate(-45deg);
    transform-origin: 3.75em 3.75em;
    border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -0.6875em;
    left: 1.875em;
    transform: rotate(-45deg);
    transform-origin: 0 3.75em;
    border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
    position: absolute;
    z-index: 2;
    top: -0.25em;
    left: -0.25em;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    border: 0.25em solid rgba(165, 220, 134, 0.3);
    border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
    position: absolute;
    z-index: 1;
    top: 0.5em;
    left: 1.625em;
    width: 0.4375em;
    height: 5.625em;
    transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    display: block;
    position: absolute;
    z-index: 2;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #28a745;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    top: 2.875em;
    left: 0.8125em;
    width: 1.5625em;
    transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
    transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
    -webkit-animation: swal2-animate-success-line-tip 0.75s;
    animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
    -webkit-animation: swal2-animate-success-line-long 0.75s;
    animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
    animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
    margin: 0 0 1.25em;
    padding: 0;
    background: inherit;
    font-weight: 600;
}

.swal2-progress-steps li {
    display: inline-block;
    position: relative;
}

.swal2-progress-steps .swal2-progress-step {
    z-index: 20;
    flex-shrink: 0;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    background: #2778c4;
    color: #fff;
    line-height: 2em;
    text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
    background: #2778c4;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step {
    background: #add8e6;
    color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line {
    background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
    z-index: 10;
    flex-shrink: 0;
    width: 2.5em;
    height: 0.4em;
    margin: 0 -1px;
    background: #2778c4;
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent;
}

.swal2-show {
    -webkit-animation: fadeInDown 0.5s;
    animation: fadeInDown 0.5s;
}

.swal2-hide {
    -webkit-animation: fadeOutUp 0.5s;
    animation: fadeOutUp 0.5s;
}

.swal2-noanimation {
    transition: none;
}

.swal2-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.swal2-rtl .swal2-close {
    right: auto;
    left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
    right: 0;
    left: auto;
}

@supports (-ms-accelerator: true) {
    .swal2-range input {
        width: 100% !important;
    }
    .swal2-range output {
        display: none;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .swal2-range input {
        width: 100% !important;
    }
    .swal2-range output {
        display: none;
    }
}

@-webkit-keyframes swal2-toast-show {
    0% {
        transform: translateY(-0.625em) rotateZ(2deg);
    }
    33% {
        transform: translateY(0) rotateZ(-2deg);
    }
    66% {
        transform: translateY(0.3125em) rotateZ(2deg);
    }
    100% {
        transform: translateY(0) rotateZ(0deg);
    }
}

@keyframes swal2-toast-show {
    0% {
        transform: translateY(-0.625em) rotateZ(2deg);
    }
    33% {
        transform: translateY(0) rotateZ(-2deg);
    }
    66% {
        transform: translateY(0.3125em) rotateZ(2deg);
    }
    100% {
        transform: translateY(0) rotateZ(0deg);
    }
}

@-webkit-keyframes swal2-toast-hide {
    100% {
        transform: rotateZ(1deg);
        opacity: 0;
    }
}

@keyframes swal2-toast-hide {
    100% {
        transform: rotateZ(1deg);
        opacity: 0;
    }
}

@-webkit-keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: 0.5625em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 0.125em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 0.625em;
        left: -0.25em;
        width: 1.625em;
    }
    84% {
        top: 1.0625em;
        left: 0.75em;
        width: 0.5em;
    }
    100% {
        top: 1.125em;
        left: 0.1875em;
        width: 0.75em;
    }
}

@keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: 0.5625em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 0.125em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 0.625em;
        left: -0.25em;
        width: 1.625em;
    }
    84% {
        top: 1.0625em;
        left: 0.75em;
        width: 0.5em;
    }
    100% {
        top: 1.125em;
        left: 0.1875em;
        width: 0.75em;
    }
}

@-webkit-keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0;
    }
    65% {
        top: 1.25em;
        right: 0.9375em;
        width: 0;
    }
    84% {
        top: 0.9375em;
        right: 0;
        width: 1.125em;
    }
    100% {
        top: 0.9375em;
        right: 0.1875em;
        width: 1.375em;
    }
}

@keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0;
    }
    65% {
        top: 1.25em;
        right: 0.9375em;
        width: 0;
    }
    84% {
        top: 0.9375em;
        right: 0;
        width: 1.125em;
    }
    100% {
        top: 0.9375em;
        right: 0.1875em;
        width: 1.375em;
    }
}

@-webkit-keyframes swal2-show {
    0% {
        transform: scale(0.7);
    }
    45% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes swal2-show {
    0% {
        transform: scale(0.7);
    }
    45% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

@-webkit-keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 1.0625em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 2.1875em;
        left: -0.375em;
        width: 3.125em;
    }
    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em;
    }
    100% {
        top: 2.8125em;
        left: 0.8125em;
        width: 1.5625em;
    }
}

@keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 1.0625em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 2.1875em;
        left: -0.375em;
        width: 3.125em;
    }
    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em;
    }
    100% {
        top: 2.8125em;
        left: 0.8125em;
        width: 1.5625em;
    }
}

@-webkit-keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em;
    }
    100% {
        top: 2.375em;
        right: 0.5em;
        width: 2.9375em;
    }
}

@keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em;
    }
    100% {
        top: 2.375em;
        right: 0.5em;
        width: 2.9375em;
    }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes swal2-rotate-success-circular-line {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@-webkit-keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }
    50% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }
    80% {
        margin-top: -0.375em;
        transform: scale(1.15);
    }
    100% {
        margin-top: 0;
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }
    50% {
        margin-top: 1.625em;
        transform: scale(0.4);
        opacity: 0;
    }
    80% {
        margin-top: -0.375em;
        transform: scale(1.15);
    }
    100% {
        margin-top: 0;
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes swal2-animate-error-icon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes swal2-animate-error-icon {
    0% {
        transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@-webkit-keyframes swal2-rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes swal2-rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow: hidden;
}

body.swal2-height-auto {
    height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: calc(100% - 0.625em * 2);
    background-color: transparent !important;
}

body.swal2-no-backdrop .swal2-container>.swal2-modal {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

body.swal2-no-backdrop .swal2-container.swal2-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-top-start,
body.swal2-no-backdrop .swal2-container.swal2-top-left {
    top: 0;
    left: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-top-end,
body.swal2-no-backdrop .swal2-container.swal2-top-right {
    top: 0;
    right: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.swal2-no-backdrop .swal2-container.swal2-center-start,
body.swal2-no-backdrop .swal2-container.swal2-center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-center-end,
body.swal2-no-backdrop .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-start,
body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
    bottom: 0;
    left: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-end,
body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
    right: 0;
    bottom: 0;
}

@media print {
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
        overflow-y: scroll !important;
    }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true] {
        display: none;
    }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
        position: static !important;
    }
}

body.swal2-toast-shown .swal2-container {
    background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-top {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
}

body.swal2-toast-column .swal2-toast {
    flex-direction: column;
    align-items: stretch;
}

body.swal2-toast-column .swal2-toast .swal2-actions {
    flex: 1;
    align-self: stretch;
    height: 2.2em;
    margin-top: 0.3125em;
}

body.swal2-toast-column .swal2-toast .swal2-loading {
    justify-content: center;
}

body.swal2-toast-column .swal2-toast .swal2-input {
    height: 2em;
    margin: 0.3125em auto;
    font-size: 0.875rem;
}

body.swal2-toast-column .swal2-toast .swal2-validation-message {
    font-size: 0.875rem;
}

.swal2-confirm,
.swal2-cancel {
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.swal2-popup {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.swal2-popup.swal2-toast {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.swal2-popup.swal2-toast .swal2-header {
    padding: 0;
    border-bottom: 0;
}

.swal2-popup.swal2-toast .swal2-title {
    margin: 0;
    color: #6c757d;
}

.swal2-popup.swal2-toast .swal2-content {
    padding: 0 0.5rem;
}

.swal2-popup.swal2-toast .swal2-actions {
    flex-basis: 0 !important;
    margin: 0;
    padding: 0;
}

.swal2-popup.swal2-toast .swal2-styled {
    margin: 0;
}

.swal2-title {
    margin: 0;
    font-size: 1.25rem;
}

.swal2-content {
    padding: 1rem 1rem 0;
}

.swal2-actions {
    border-radius: 0.25rem;
}

.swal2-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
}

.swal2-close {
    height: auto;
    padding: 1rem 1.2rem 1rem 1rem;
    font-weight: 700;
}

.swal2-input,
.swal2-textarea {
    height: inherit;
    padding: 0.375rem 0.75rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    line-height: 1.5;
}

.swal2-input:focus,
.swal2-textarea:focus {
    border: 1px solid #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    color: #495057;
}

.swal2-input.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
    box-shadow: none !important;
}

.swal2-input.swal2-inputerror:focus,
.swal2-textarea.swal2-inputerror:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.swal2-styled.swal2-confirm {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
}

.swal2-styled.swal2-confirm:hover {
    border-color: #0062cc;
    background-color: #0069d9;
}

.swal2-styled.swal2-confirm:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-styled.swal2-confirm:active {
    border-color: #005cbf;
    background-color: #0062cc;
}

.swal2-styled.swal2-confirm:active:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-styled.swal2-cancel {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
}

.swal2-styled.swal2-cancel:hover {
    border-color: #545b62;
    background-color: #5a6268;
}

.swal2-styled.swal2-cancel:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.swal2-styled.swal2-cancel:active {
    border-color: #4e555b;
    background-color: #545b62;
}

.swal2-styled.swal2-cancel:active:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.swal2-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"%3e%3cpath fill="%23343a40" d="M2 0L0 2h4zm0 5L0 3h4z"/%3e%3c/svg%3e') no-repeat right 0.75rem center/8px 10px;
    background-color: #fff;
    color: #495057;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swal2-select:focus {
    border: 1px solid #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-select:focus::-ms-value {
    background-color: #fff;
    color: #495057;
}

.swal2-select[multiple],
.swal2-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.swal2-select:disabled {
    background-color: #e9ecef;
    color: #fff;
}

.swal2-select::-ms-expand {
    display: none;
}

.swal2-radio label {
    position: relative;
    margin-right: 1rem;
    margin-left: 1.5rem;
}

.swal2-radio label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.swal2-radio label input:checked~.swal2-label::before {
    border-color: #007bff;
    background: #007bff;
    color: #fff;
}

.swal2-radio label input:focus~.swal2-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-radio label input:focus:not(:checked)~.swal2-label::before {
    border-color: #80bdff;
}

.swal2-radio label input:not(:disabled):active~.swal2-label::before {
    border-color: #b3d7ff;
    background-color: #b3d7ff;
    color: #fff;
}

.swal2-radio label input:checked~.swal2-label::after {
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -4 8 8"%3e%3ccircle r="3" fill="%23fff"/%3e%3c/svg%3e');
}

.swal2-radio label input:disabled:checked~.swal2-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.swal2-radio .swal2-label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.0833333333rem;
    left: -1.5rem;
    width: 1rem;
    height: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: #adb5bd solid 1px;
    border-radius: 50%;
    background-color: #fff;
    pointer-events: none;
}

.swal2-radio .swal2-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.0833333333rem;
    left: -1.5rem;
    width: 1rem;
    height: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: transparent solid 1px;
    background: no-repeat 50%/50% 50%;
}

.swal2-checkbox {
    margin-right: 1rem;
    padding-left: 1.5rem;
}

.swal2-checkbox input {
    z-index: -1;
    opacity: 0;
}

.swal2-checkbox input:checked~.swal2-label::before {
    border-color: #007bff;
    background: #007bff;
    color: #fff;
}

.swal2-checkbox input:focus~.swal2-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-checkbox input:focus:not(:checked)~.swal2-label::before {
    border-color: #80bdff;
}

.swal2-checkbox input:not(:disabled):active~.swal2-label::before {
    border-color: #b3d7ff;
    background-color: #b3d7ff;
    color: #fff;
}

.swal2-checkbox input:checked~.swal2-label::after {
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"%3e%3cpath fill="%23fff" d="M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z"/%3e%3c/svg%3e');
}

.swal2-checkbox input:disabled:checked~.swal2-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.swal2-checkbox .swal2-label {
    position: relative;
}

.swal2-checkbox .swal2-label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    width: 1rem;
    height: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: #adb5bd solid 1px;
    background-color: #fff;
    pointer-events: none;
}

.swal2-checkbox .swal2-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    width: 1rem;
    height: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: transparent solid 1px;
    background: no-repeat 50%/50% 50%;
}

.swal2-range {
    align-items: center;
}

.swal2-range input {
    width: 100%;
    height: calc(1rem + 0.6rem);
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swal2-range input:focus {
    outline: none;
}

.swal2-range input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-range input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-range input:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.swal2-range input::-moz-focus-outer {
    border: 0;
}

.swal2-range input::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 0;
    border-radius: 1rem;
    background: #007bff;
    box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    appearance: none;
}

.swal2-range input::-webkit-slider-thumb:active {
    background: #b3d7ff;
}

.swal2-range input::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    border-radius: 1rem;
    border-color: transparent;
    background-color: #dee2e6;
    box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
    color: transparent;
    cursor: pointer;
}

.swal2-range input::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 0;
    border-radius: 1rem;
    background: #007bff;
    box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
    -moz-appearance: none;
    appearance: none;
}

.swal2-range input::-moz-range-thumb:active {
    background: #b3d7ff;
}

.swal2-range input::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    border-radius: 1rem;
    border-color: transparent;
    background-color: #dee2e6;
    box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
    color: transparent;
    cursor: pointer;
}

.swal2-range input::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 0;
    border-radius: 1rem;
    background: #007bff;
    box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
    appearance: none;
}

.swal2-range input::-ms-thumb:active {
    background: #b3d7ff;
}

.swal2-range input::-ms-track {
    width: 100%;
    height: 0.5rem;
    border-width: 0.5rem;
    border-color: transparent;
    background-color: transparent;
    box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
    color: transparent;
    cursor: pointer;
}

.swal2-range input::-ms-fill-lower {
    border-radius: 1rem;
    background-color: #dee2e6;
}

.swal2-range input::-ms-fill-upper {
    margin-right: 15px;
    border-radius: 1rem;
    background-color: #dee2e6;
}

.swal2-range input:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}

.swal2-range input:disabled::-webkit-slider-runnable-track {
    cursor: default;
}

.swal2-range input:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}

.swal2-range input:disabled::-moz-range-track {
    cursor: default;
}

.swal2-range input:disabled::-ms-thumb {
    background-color: #adb5bd;
}

.swal2-validation-message {
    position: relative;
    margin-bottom: 1rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    border-color: #d6d8db;
    background: #e2e3e5;
    color: #383d41;
    font-size: 1rem;
}

.swal2-validation-message::before {
    background-color: #e4606d;
}

.swal2-toast {
    max-width: 350px;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.85);
}

#editor {
    height: 350px;
}

h1,
h2 {
    font-family: "Thin_foma", sans-serif;
}

.transparent-btn {
    color: #ffffff;
    text-shadow: none;
    font-weight: 600;
    background-color: transparent;
    font-size: 15px;
    border: 2px solid #ffffff;
    padding: 10px 25px 9px 25px;
    margin: 0 3px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-property: color;
    transition-duration: 0.3s;
}

.transparent-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.transparent-btn:hover,
.transparent-btn:focus,
.transparent-btn:active {
    color: #313131;
    text-decoration: none;
}

.transparent-btn:hover:before,
.transparent-btn:focus:before,
.transparent-btn:active:before {
    transform: scaleY(1);
}

.filled-btn {
    color: #313131;
    text-shadow: none;
    font-weight: 500;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-property: color;
    transition-duration: 0.3s;
}

.filled-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #313131;
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.filled-btn:hover,
.filled-btn:focus,
.filled-btn:active {
    color: #ffffff;
    text-decoration: none;
}

.filled-btn:hover:before,
.filled-btn:focus:before,
.filled-btn:active:before {
    transform: scaleY(1);
}

* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #313131;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

.section-title {
    margin: 0;
    margin-bottom: 30px;
    font-weight: bold;
    color: #313131;
}

.green {
    color: #86cd5b;
}

.yellow {
    color: #f8c145;
}

.orange {
    color: #ff8a11;
}

.blue {
    color: #00bbdc;
}

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

.tab-content {
    display: none;
}

.content_active {
    display: block;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

.button {
    padding: 5px 10px;
    border: 2px solid #fff;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

li {
    list-style: none;
}

.breadcrumb {
    padding: 0;
    margin-top: 50px;
    margin-bottom: 20px;
    background: transparent;
    color: #d1cece;
    font-size: 14px;
}

.breadcrumb a {
    color: #d1cece;
    text-decoration: underline;
}

.breadcrumb a:hover {
    color: #d1cece;
    text-decoration: none;
}

.standart-link {
    text-decoration: underline;
    color: #0000FF;
}

.standart-link:hover {
    text-decoration: none;
    color: #0000ff;
}

textarea {
    resize: none;
}

.error {
    border: 1px solid #ff4949;
}

.ready-file {
    color: #86cd5b;
    cursor: pointer;
}

.error-file {
    color: #ff4949;
    cursor: pointer;
}

.load-file {
    cursor: wait;
}

.hide {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.margin-right-7 {
    margin-right: 7px;
}

select {
    cursor: pointer;
}

.pagination {
    margin-top: 20px;
}

.pagination .link-paginate {
    font-weight: bold;
}

.pagination .link-paginate:hover {
    color: #ff4949;
}

.pagination .active {
    font-weight: bold;
    color: #ff4949;
}

.pagination li {
    margin-left: 5px;
}

.mmenu {
    display: flex;
    justify-content: center;
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    background-color: #fafafa;
    transition: 0.5s;
    transform: translateY(-100%);
    padding: 20px;
}

.reset-password__page {
    min-height: 600px;
    padding-top: 70px;
}

.reset-password__page .reset-password__form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.unsubscribe-page {
    min-height: 600px;
    padding-top: 70px;
}

.error-subscribe-form {
    display: none;
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 300px;
    text-align: center;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
}

.mmenu-block {
    z-index: 9999;
}

.menu_active {
    top: 78px;
    transform: translateX(0%) !important;
}

.content-active {
    /*transform: translateX(30%);*/
    opacity: 0.2;
    pointer-events: none;
}

#wrapper {
    margin-top: 73px;
}

.hamburger {
    z-index: 9999;
}

.red-btn {
    width: auto;
    height: 46px;
    padding: 9px 8px;
    background: #ff4949;
    border: none;
    border: 1px solid #ff4949;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

.body_overflow {
    overflow: hidden;
}

.page-item.active .page-link {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.page-link,
.btn-link {
    color: #17a2b8;
}

.page-link:hover,
.btn-link:hover {
    color: #17a2b8;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: #ff4949 !important;
    border-color: #ff4949 !important;
}

.form-check-input[type=checkbox] {
    border-radius: 0.25em;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.newsletter-form .red-btn {
    background: #fff;
    color: #ff4949;
    border: 1px solid #ff4949;
}

.newsletter-form .red-btn:hover {
    color: #fff;
}

.newsletter-form .transparent-btn::before {
    background: #ff4949;
}

.submit-success {
    position: fixed;
    top: 90px;
    left: 20px;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
}

.form-publication .input-style::-moz-placeholder {
    color: #ccc;
}

.form-publication .input-style:-ms-input-placeholder {
    color: #ccc;
}

.form-publication .input-style::placeholder {
    color: #ccc;
}

.header-top {
    box-shadow: 0 1px 3px #d1cece;
}

.header-top__nav {
    padding-top: 8px;
}

.header-top__nav-item {
    font-size: 16px;
    font-weight: bold;
    list-style: none;
    position: relative;
}

.header-top__nav-item a {
    position: relative;
    font-family: "Thin_foma", sans-serif;
    font-size: 18px;
}

.header-top__nav-item a:hover {
    color: #ff4949;
}

.header-top__nav-items {
    display: flex;
    margin: 0;
    align-items: center;
}

.header-top__nav-item_active a {
    color: #ff4949;
}

.header-top__nav-button {
    max-width: 140px;
    padding: 9px 8px;
    background: #ff4949;
    border: none;
    border: 1px solid #ff4949;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: #fff;
}

.header-top__nav-button:hover {
    color: #ff4949;
}

.header-bottom {
    padding: 25px 0;
    background-image: url("/images/header-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dropdown-menu {
    top: 123%;
    padding-bottom: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.dropdown-item {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px !important;
    font-weight: 600;
    font-family: "Roboto", sans-serif !important;
}

.dropdown-item:hover {
    color: #fff !important;
    background-color: #ff4949;
}

.dropdown-item:hover:last-child {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.dropdown-item_active {
    color: #ff2001;
}

header {
    background: #fff;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}

.login-and-register {
    display: flex;
    flex-flow: wrap row;
    justify-content: center;
}

.login-and-register a {
    font-family: "Thin_foma", sans-serif;
    font-size: 20px;
    font-weight: 100;
    margin: 0px 3px;
}

.login-and-register a:hover {
    color: #ff4949;
}

.login-and-register img {
    margin-right: 10px;
}

.my-account a {
    font-size: 20px;
    font-family: "Thin_foma", sans-serif;
    margin: 0px 5px 0 0;
}

.my-account a:hover {
    color: #ff4949;
}

.admin-button {
    position: absolute;
    top: 0;
    right: -120px;
}

.mmenu .header-top__nav-items {
    display: block;
}

.mmenu .header-top__nav-item {
    margin: 0 !important;
}

.mmenu .header-top__nav-item a {
    font-size: 25px !important;
}

.mmenu .dropdown-mmenu {
    display: none;
}

.mmenu .dropdown-mmenu a {
    font-family: "Thin_foma", sans-serif !important;
}

.mmenu .dropdown-mmenu .dropdown-item:hover {
    background: none;
    color: #ff4949 !important;
}

.mmenu .nav-link-dropdown:hover {
    cursor: pointer;
    color: #ff4949 !important;
}

.headroom {
    will-change: transform;
    transition: transform 200ms linear;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.header--fixed {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed !important;
    transition: 0.1s ease;
    z-index: 99;
}

.modal-backdrop {
    position: initial;
}

footer {
    background-image: url("/images/happykiddo_footer-modern-bg_img.png") no-repeat;
    background-color: #2a2424;
    min-height: 100px;
    background-position: top center;
    background-repeat: repeat-y;
    color: #ffffff;
    font-size: 12px;
    line-height: 15px;
    padding: 50px 0 10px 0;
}

.footer-modern-bg {
    color: #ffffff;
    font-size: 12px;
    line-height: 15px;
    background-image: url("/images/happykiddo_footer-modern-bg_img.png");
}

.footer-modern-bg .footer-widget {
    padding-right: 20px;
    padding-left: 20px;
}

.footer-modern-bg ul li a::before {
    content: "";
    background: url("/images/happykiddo_footer-list-style.png") 0 0 no-repeat;
    width: 10px;
    height: 15px;
    position: absolute;
    display: block;
    left: 0;
}

.footer-modern-bg ul li a {
    color: #ffffff;
}

.footer-modern-bg .second-row .copyright {
    padding-top: 10px;
    font-size: 11px;
}

.footer-modern-bg .second-row .search-form {
    border-bottom: 1px solid #595555;
}

.footer-modern-bg ul {
    padding: 0;
}

.footer-modern-bg ul li {
    list-style: none;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.footer-modern-bg .search-form form input[type=search]:focus {
    max-width: 260px;
    width: 100%;
    padding-left: 42px;
    color: #ffffff;
    background-color: #595555;
    cursor: auto;
    border: 1px solid #595555;
    border-bottom-color: #595555;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom: 0;
}

.footer-modern-bg .search-form form input[type=search] {
    width: 100% !important;
    max-width: 250px;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
    border: 1px solid #595555;
    background: transparent url("/images/happykiddo_search-icon.png") no-repeat 11px center;
    padding: 9px 0;
    outline: none;
    width: 130px;
    color: transparent;
    cursor: pointer;
    height: 20px;
    position: relative;
    top: 1px;
    transition: all 0.5s;
}

.footer-modern-bg .contacts {
    color: #fcc005;
}

.questions-text {
    margin-bottom: 0px;
    margin-top: 50px;
}

.second-row {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #595555;
}

.minobr {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.minobr span {
    margin-left: 20px;
}

.dib a {
    color: #fff !important;
    text-decoration: none;
}

.dib a:hover {
    text-decoration: underline;
}

.dib {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 10px;
}

.footer-modern-bg .search-form form input[type=search]::-moz-placeholder {
    color: transparent;
}

.footer-modern-bg .search-form form input[type=search]:-ms-input-placeholder {
    color: transparent;
}

.footer-modern-bg .search-form form input[type=search]::placeholder {
    color: transparent;
}

.footer-modern-bg .search-form form input[type=search]:focus::-moz-placeholder {
    color: #a1afaf;
}

.footer-modern-bg .search-form form input[type=search]:focus:-ms-input-placeholder {
    color: #a1afaf;
}

.footer-modern-bg .search-form form input[type=search]:focus::placeholder {
    color: #a1afaf;
}

.recent-works-widget {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.recent-works-widget div {
    margin: 0px 5px;
}

.newsletter {
    background-color: #f0f0f0;
    padding-top: 40px;
    border-top: 2px solid #dcdcdc;
    padding-bottom: 20px;
}

.newsletter .section-title {
    margin-bottom: 25px;
    font-weight: normal;
}

.main-page__main {
    padding: 70px 0;
    background: url("/images/main_page/bg.jpg");
    position:relative;
}
.main-page__main::after {
    content: "";
    position: absolute;
    height: 11px;
    width: 100%;
    bottom: 0;
    background: url(/images/circle-line2.png);
    z-index: 4;
}
.main-page__descr {
    padding-top: 70px;
    padding-bottom: 60px;
}

.main-page__img {
    display: flex;
    justify-content: flex-end;
}

.main-page__contents {
    position: relative;
    padding-top: 75px;
    background: url("/images/main_page/bg_section_1.png") center;
}

.main-page__contents::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
    background: url("/images/circle-line.png");
    top: 0;
    left: 0;
    overflow: visible;
}

.main-page__banner {
    position: relative;
    padding-top: 25px;
    background: url("/images/main_page/bg_section_2.png");
}

.main-page__banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
    background: url("/images/circle-line.png");
    top: 0;
    left: 0;
    overflow: visible;
}

.main-page__questions {
    padding-top: 120px;
    padding-bottom: 95px;
    background: url("/images/main_page/bg_section_1.png");
}

.main-page__winner {
    padding: 90px;
}

.main-page__surprise {
    position: relative;
    padding-top: 75px;
    padding-bottom: 310px;
    background: url("/images/main_page/bg_section_3.jpg");
}

.main-page__surprise .section-title {
    margin-bottom: 5px;
    color: #fff;
}

.main-page__surprise .sub-title {
    font-size: 22px;
    color: #fff;
}

.main-page__surprise .sub-title span {
    display: block;
}

.main-page__surprise img {
    position: absolute;
    bottom: -162px;
    left: 50%;
    transform: translateX(-422px);
    z-index: 2;
}

.main-page__form {
    padding-top: 105px;
    padding-bottom: 55px;
    background: #F6F6F6;
}

.main-page__form .container {
    position: relative;
}

.main-page__form .section-title {
    position: relative;
    margin-bottom: 10px;
    z-index: 3;
}

.main-page__form p {
    font-weight: 500;
}

._diplom-1 {
    margin-left: 15px;
}

.main-descr {
    margin-top: 33px;
}

.main-descr__item {
    font-size: 22px;
    color: #313131;
    list-style: url("/images/main_page/service-icon.png");
    margin-left: 35px;
}

.statbar {
    height: 216px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 15px 50px 15px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    text-align: center;
}

.statbar__symbol {
    display: inline-block;
    font-size: 38px;
    font-weight: 600;
    font-family: "Atma", cursive;
}

.statbar__title {
    font-size: 18px;
    font-weight: bold;
}

.statbar__descr {
    font-size: 13px;
    font-weight: 500;
}

.contents__descr {
    font-size: 14px;
    font-weight: 500;
}

#tabs {
    position: relative;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 0;
}

.mark {
    margin-right: 2px;
    padding: 15px 40px;
    background: #ff4949;
    border: 1px solid #ff4949;
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    list-style: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.mark_active {
    background: #fff;
    border: 1px solid #d1cece;
    border-bottom: none;
    color: #313131;
}

.tab-section {
    padding-top: 40px;
    padding-bottom: 150px;
    margin-top: -1px;
    border-top: 1px solid #d1cece;
    background: #fff;
}

.competition {
    display: flex;
    background: #00bbdc;
    margin-bottom: 15px;
}

.competition__descr {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 25px;
    color: #fff;
}

.competition__descr .title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.competition__descr .name {
    font-size: 15px;
    margin-bottom: 7px;
}

.competition__descr .date-time {
    font-size: 13px;
    margin-bottom: 10px;
}

.competition__descr .date-time span {
    display: block;
}

.competition__descr .button:hover {
    color: #00bbdc;
}

.publication-snippet {
    display: flex;
    flex-wrap: wrap;
}

.publication {
    display: flex;
    width: 50%;
    margin-bottom: 15px;
    padding-right: 55px;
}

.publication__img {
    margin-right: 25px;
}

.publication__descr .title {
    font-size: 18px;
    font-weight: bold;
}

.publication__descr .title:hover {
    color: #313131;
}

.publication__descr .date-time {
    font-size: 12px;
    color: #ABA7A7;
}

.publication__descr .author {
    font-size: 14px;
    color: #606060;
}

.more {
    text-align: right;
    font-size: 12px;
    color: #313131;
}

.more a {
    border-bottom: 1px dotted #313131;
}

.more a:hover {
    color: #313131;
}

.banner__title {
    text-transform: uppercase;
    color: #fff;
}

.banner__wrap {
    padding-top: 70px;
    text-align: center;
}

.banner__button_wrap {
    display: flex;
    justify-content: center;
}

.banner__button {
    padding: 12px 7px;
    margin-right: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.banner__button:last-child {
    background: #fff;
    color: #96c667;
}

.banner__button:last-child:hover {
    color: #fff;
}

.banner__button.filled-btn:before {
    background: #96c667;
}

.banner__button:hover {
    color: #96c667;
}

.winners {
    padding-top: 65px;
}

.winner__desr {
    font-weight: 500;
}

.winer-block {
    display: flex;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 300px;
    background: #f8c145;
    box-shadow: 0px 5px 0px 0px #f8c145;
}

.winer-block__img {
    position: relative;
    width: 180px;
    height: 180px;
    border: 8px solid #fff;
    border-radius: 50%;
    background-size: cover;
}

.winer-block__img .mask {
    opacity: 0;
    overflow: visible;
    border: 0 solid rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: all 0.35s ease-in;
}

.winer-block__img .mask-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 101;
}

.winer-block__img .mask i {
    border-radius: 50%;
    background-color: #ff4949;
    color: #ffffff;
    padding: 7px;
    margin-bottom: 10px;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(1.5);
}

.winer-block__img .mask:hover {
    opacity: 1;
    color: #fff;
}

.winer-block__img .mask:hover {
    transform: scale(1);
}

.winer-block__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 66%;
    text-align: center;
}

.winer-block__info .name {
    margin-top: 7px;
    font-size: 18px;
    color: #fff;
}

.winer-block__info .date-time {
    margin-top: 7px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.winer-block__info .date-time span {
    display: block;
    font-size: 11px;
    font-weight: 400;
}

.winer-block__info .descr {
    margin-top: 7px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.winer-block__info .button:hover {
    color: #f8c145;
}

.fa-eye:before {
    content: "\F06E";
    height: 12px;
    width: 12px;
}

.fa {
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
}

.title_active {
    height: 97%;
}

.questions__acord {
    margin-bottom: 27px;
}

.questions__acord .head {
    display: flex;
    margin-bottom: 10px;
    cursor: pointer;
}

.questions__acord .head .arrow {
    position: relative;
    width: 70px;
    height: 55px;
    background: #ff4949;
}

.questions__acord .head .arrow::before {
    content: "";
    position: absolute;
    background: url("/images/main_page/arrow.svg") center no-repeat;
    background-size: contain;
    width: 35%;
    height: 35%;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    margin-top: -9px;
}

.questions__acord .head .arrow_active::before {
    transform: rotate(90deg);
}

.questions__acord .head .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
    width: 100%;
    border: 1px solid #d1cece;
    background: #fff;
    font-size: 20px;
    font-weight: bold;
}

.questions__acord .body {
    display: none;
    padding: 25px;
    border: 1px solid #d1cece;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
}

.questions__acord .body_active {
    display: flex;
}

.questions__acord-wrap {
    padding-top: 55px;
}

.main-form {
    position: relative;
    margin-top: 60px;
}

.main-form span {
    position: relative;
    margin-left: 4px;
    font-size: 12px;
    font-weight: 500;
}

.main-form span::before {
    content: "*";
    position: absolute;
    top: -5px;
    right: -7px;
    color: #ff4949;
}

.main-form input {
    margin-right: 5px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 25px;
    padding: 10px;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.main-form img {
    position: absolute;
    bottom: -19px;
    right: 53px;
}

.main-page__items_item h2 {
    font-family: "Thin_foma", sans-serif;
    font-size: 22px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.main-page__items_item p {
    font-family: "Roboto Light", sans-serif;
    font-size: 15px;
    text-align: center;
    margin-bottom: 35px;
}

.main-page__news_conc {
    padding: 55px 0;
    background: url("/images/main_page/usor.png") repeat;
    background-color: #F7F7F7;
}

.main-page__news_conc::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
    background: url(/images/circle-line.png);
    top: 0;
    left: 0;
    overflow: visible;
}

.main-page__news_conc p {
    font-family: "Roboto Light", Arial;
    font-size: 15px;
    margin-bottom: 42px;
}

.main-page__news_conc:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
    background: url("/images/circle-line.png");
    top: 0;
    left: 0;
    overflow: visible;
}

.news_conc-item-down {
    margin-top: 40px;
    bottom: 8px;
    left: 49%;
}

.main-page__news_conc-item {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.main-page__news_conc-item img {
    width: 50%;
}

.main-page__news_conc-item-desc {
    padding: 20px 20px 25px 20px;
    background-color: #85bfe1;
    width: 50%;
}

.main-page__news_conc-button {
    padding: 10px 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 12px;
    font-family: Roboto;
    font-weight: 500;
    color: #ff3737;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #ff3737;
    border-radius: 3px;
    transition: 0.3s;
    margin-top: 30px;
}

.main-page__news_conc-button:hover {
    color: #fff;
    background-color: #ff3737;
}

.main-page__news_conc-item-desc a {
    font-family: Roboto Medium, Arial;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.main-page__news_conc-item-desc a:hover {
    text-decoration: underline;
}

.main-page__news_conc-item-desc p {
    font-family: "Roboto Light", Arial;
    color: #fff;
    text-align: center;
    margin: 0;
}

.main-page__news_conc-item-desc button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 12px;
    font-family: Roboto, Arial;
    font-weight: 500;
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #fff;
    border-radius: 3px;
    width: 132px;
    height: 31px;
    transition: 0.3s;
}

.main-page__news_conc-item-desc button:hover {
    background-color: #6794af;
}

.main-page__last_pub {
    padding: 70px 0;
}

.pub-item {
    border-radius: 5px;
    padding: 24px 19px;
    transition: 0.3s ease;
}

.pub-item:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.19);
}

.pub-item a {
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
}

.pub-item a:hover {
    color: #51c7e1;
}

.pub-item span:nth-child(1) a,
.pub-item span:nth-child(1) {
    font-size: 15px;
    font-weight: 400;
    color: #818181;
}

.pub-item span:nth-child(2) a,
.pub-item span:nth-child(2) {
    font-weight: 400;
    font-size: 15px;
    color: #899ac7;
}

.main-page__last_pub-item-3 span:nth-child(1) {
    font-size: 14px;
    color: black;
}

.main-page__last_pub-item-3 span:nth-child(2) {
    font-size: 13px;
    color: #818181;
}

.main-page__last_pub-item p {
    font-family: Roboto, Arial;
    font-weight: 100;
    font-size: 16px;
}

.main-page__last_pub-item .d-flex img {
    width: 40px;
    margin-right: 8px;
}

.main-page__descr {
    padding-top: 70px;
    padding-bottom: 60px;
}

.main-page__img {
    display: flex;
    justify-content: flex-end;
}

.main-page__contents {
    position: relative;
    padding-top: 75px;
    background: url("/images/main_page/bg_section_1.png") center;
}

.main-page__contents::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
    background: url("/images/circle-line.png");
    top: 0;
    left: 0;
    overflow: visible;
}

.main-page__banner {
    position: relative;
    padding-top: 25px;
    background: url("/images/main_page/bg_section_2.png");
}

.main-page__banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 11px;
    background: url(/images/circle-line.png);
    top: 0;
    left: 0;
    overflow: visible;
}

.modal_question .modal-content {
    border: 3px black solid;
    border-radius: 0;
    max-width: 547px;
    width: 100%;
}

.modal_question .modal-header {
    border-radius: 0;
    padding: 30px 15px;
}

.modal_question .modal-header button {
    position: absolute;
    width: 62px;
    height: 52px;
    right: -15px;
    top: -26px;
    font-size: 26px;
    color: black;
    background-color: white;
    border: 3px solid black;
}

.modal_question .modal-header button:hover {
    color: white;
    background-color: black;
}

.modal_question .modal-header p {
    margin: 0px;
    font-family: "Roboto", Arial;
}

.main-page__questions {
    padding: 70px 0;
    background: url("/images/main_page/usor2.png") repeat;
    background-color: #fff;
}

.main-page__questions .col-6 {
    margin-bottom: 30px;
}

.main-page__questions .row p {
    font-family: Roboto, Arial;
    margin: 0;
    margin-left: 10px;
    font-weight: 100;
    font-size: 24px;
}

.main-page__questions .row p:hover {
    color: red;
}

.main-page__questions_dop {
    margin-top: 50px;
    font-family: Roboto, Arial;
    font-size: 15px;
    text-align: center;
}

.main-page__winner {
    padding: 90px;
}

.main-page__surprise {
    position: relative;
    padding-top: 70px;
    padding-bottom: 310px;
    background: url("/images/main_page/bg_section_3.jpg");
}

.main-page__surprise p {
    font-family: "Roboto Light", Arial;
    font-size: 15px;
    color: white;
    text-align: center;
}

.main-page__surprise .section-title {
    margin-bottom: 5px;
    color: #fff;
}

.main-page__surprise .sub-title {
    font-size: 22px;
    color: #fff;
}

.main-page__surprise .sub-title span {
    display: block;
}

.main-page__surprise img {
    position: absolute;
    bottom: -106px;
    left: 50%;
    transform: translateX(-422px);
    z-index: 2;
}

.main-page__form {
    position: relative;
    padding-top: 45px;
    padding-bottom: 18px;
    background: #F6F6F6;
}

.main-page__form .section-title {
    position: relative;
    margin-bottom: 10px;
    z-index: 3;
}

.main-page__form p {
    font-family: "Roboto Light", Arial;
    font-size: 18px;
    color: #444444;
    text-align: center;
}

.main-page__form p span {
    font-family: "Roboto Light", Arial;
    font-size: 18px;
    color: #96c667;
}

._diplom-1 {
    margin-left: 15px;
}

.main-descr {
    margin-top: 33px;
}

.main-descr__item {
    font-size: 34px;
    color: #224357;
    list-style: url("/images/main_page/services-icon-1.png");
    margin-left: 35px;
    position: relative;
    margin-bottom: 50px;
}

.main-descr__item-2 {
    font-family: "Thin_foma", sans-serif;
}

.main-descr__item-1 {
    font-family: "Roboto Light", Arial;
    font-weight: 300;
    font-size: 16px;
    color: #333333;
    top: 46px;
}

.statbar {
    height: 216px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 15px 50px 15px;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    text-align: center;
}

.statbar__symbol {
    display: inline-block;
    font-size: 38px;
    font-weight: 600;
    font-family: "Atma", cursive;
}

.statbar__title {
    font-size: 18px;
    font-weight: bold;
}

.statbar__descr {
    font-size: 13px;
    font-weight: 500;
}

.contents__descr {
    font-size: 14px;
    font-weight: 500;
}

#tabs {
    position: relative;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 0;
}

.mark {
    margin-right: 2px;
    padding: 15px 40px;
    background: #ff2001;
    border: 1px solid #ff2001;
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    list-style: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.mark_active {
    background: #fff;
    border: 1px solid #d1cece;
    border-bottom: none;
    color: #313131;
}

.tab-section {
    padding-top: 40px;
    padding-bottom: 150px;
    margin-top: -1px;
    border-top: 1px solid #d1cece;
    background: #fff;
}

.competition {
    display: flex;
    background: #00bbdc;
    margin-bottom: 15px;
}

.competition__descr {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 25px;
    color: #fff;
}

.competition__descr .title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.competition__descr .name {
    font-size: 15px;
    margin-bottom: 7px;
}

.competition__descr .date-time {
    font-size: 13px;
    margin-bottom: 10px;
}

.competition__descr .date-time span {
    display: block;
}

.competition__descr .button:hover {
    color: #00bbdc;
}

.publication-snippet {
    display: flex;
    flex-wrap: wrap;
}

.publication {
    display: flex;
    width: 50%;
    margin-bottom: 15px;
    padding-right: 55px;
}

.publication__img {
    margin-right: 25px;
}

.publication__descr .title {
    font-size: 18px;
    font-weight: bold;
}

.publication__descr .title:hover {
    color: #313131;
}

.publication__descr .date-time {
    font-size: 12px;
    color: #ABA7A7;
}

.publication__descr .author {
    font-size: 14px;
    color: #606060;
}

.more {
    text-align: right;
    font-size: 12px;
    color: #313131;
}

.more a {
    border-bottom: 1px dotted #313131;
}

.more a:hover {
    color: #313131;
}

.banner__title {
    text-transform: uppercase;
    color: #fff;
}

.banner__wrap {
    padding-top: 40px;
    padding-left: 10px;
    text-align: center;
}

.banner__wrap h2 {
    font-family: "Thin_foma", sans-serif;
    font-size: 44px;
    color: #fff;
    text-align: left;
}

.banner__wrap p {
    font-family: "Roboto Light", Arial;
    font-size: 15px;
    color: #fff;
    text-align: left;
}

.banner__wrap #advanced-search {
    font-family: "Roboto Light", Arial;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
    width: auto;
}

.banner__wrap form {
    margin-top: 30px;
}

.banner__wrap form div {
    display: flex;
}

.banner__wrap input {
    border: 2px solid #fff;
    border-radius: 3px;
    max-width: 493px;
    width: 100%;
    margin-right: 10px;
    height: 40px;
    padding: 10px 15px;
}

.banner__wrap button {
    border: 2px solid #fff;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    width: 122px;
    height: 40px;
}

.banner__button {
    padding: 12px 7px;
    margin-right: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.banner__button:last-child {
    background: #fff;
    color: #96c667;
}

.banner__button:last-child:hover {
    color: #fff;
}

.banner__button.filled-btn:before {
    background: #96c667;
}

.banner__button:hover {
    color: #96c667;
}

.winners {
    padding-top: 65px;
}

.winner__desr {
    font-weight: 500;
}

.winer-block {
    display: flex;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 300px;
    background: #f8c145;
    box-shadow: 0px 5px 0px 0px #dfae3e;
}

.winer-block__img {
    position: relative;
    width: 180px;
    height: 180px;
    border: 8px solid #fff;
    border-radius: 50%;
    background-size: cover;
}

.winer-block__img .mask {
    opacity: 0;
    overflow: visible;
    border: 0 solid rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: all 0.35s ease-in;
}

.winer-block__img .mask-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 101;
}

.winer-block__img .mask i {
    border-radius: 50%;
    background-color: #ff2001;
    color: #ffffff;
    padding: 7px;
    margin-bottom: 10px;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(1.5);
}

.winer-block__img .mask:hover {
    opacity: 1;
    color: #fff;
    transform: scale(1);
}

.winer-block__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 66%;
    text-align: center;
}

.winer-block__info .name {
    margin-top: 7px;
    font-size: 18px;
    color: #fff;
}

.winer-block__info .date-time {
    margin-top: 7px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.winer-block__info .date-time span {
    display: block;
    font-size: 11px;
    font-weight: 400;
}

.winer-block__info .descr {
    margin-top: 7px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.winer-block__info .button:hover {
    color: #f8c145;
}

.head-text {
    font-size: 44px;
    font-family: "Thin_foma", sans-serif;
}

.head-text span {
    color: #f34235;
}

.main-page__questions .head-text {
    margin-top: 40px;
    margin-bottom: 80px;
}

.main-page__questions_dop {
    font-size: 15px;
    font-family: "Roboto";
    text-align: center;
}

.main-page__questions_dop a {
    font-size: 15px !important;
    margin: 0 !important;
    font-family: "Roboto Light", sans-serif;
    text-decoration: underline;
}

.main-page__questions_dop a:hover {
    cursor: pointer !important;
    color: #f34235 !important;
}

.white-figure {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 27px !important;
    height: 27px;
    margin-bottom: 18px;
}

.date-publ {
    font-size: 16px;
    font-family: "Roboto Light" !important;
    text-transform: uppercase;
    margin-bottom: 5px !important;
}

.main-page__last_pub-info {
    margin-bottom: 50px;
}

.main-page__questions a {
    margin-left: 20px;
    margin-top: 16px;
    font-size: 24px;
    font-family: "Roboto Light", sans-serif;
}

.main-page__questions a:hover {
    cursor: pointer;
    color: #f34235 !important;
}

.main-page__surprise h2 {
    color: #fff;
}

h2 span {
    font-family: "Thin_foma", sans-serif;
}

.questions-item {
    align-items: center;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.theme-link:hover {
    color: #404c71 !important;
}

.education-link:hover,
.type-link:hover {
    text-decoration: underline;
}

.account__main {
    padding-bottom: 60px;
    padding-top: 60px;
    background: url("/images/main_page/bg_section_1.png");
}

.account {
    padding: 20px;
    background: #fff;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.nav-block {
    padding: 20px;
    margin-bottom: 10px;
    background: #c2f173;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.nav-block a:hover {
    color: #313131;
}

.nav-block .profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.nav-block .profile img {
    margin-right: 7px;
}

.nav-block .profile span {
    display: block;
    line-height: 18px;
    font-size: 18px;
    font-weight: bold;
}

.nav-block .title {
    font-size: 18px;
    font-weight: 500;
}

.nav-item_active {
    background: transparent;
    border: none;
}

.nav-item_active a {
    font-weight: 700;
    color: black;
}

.nav-item {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 500;
}

.nav-item span {
    border-bottom: 1px solid #434343;
    cursor: pointer;
}

.nav-item a {
    border-bottom: 1px solid #434343;
}

.coin {
    display: flex;
    font-size: 35px;
    font-weight: bold;
}

.coin img {
    margin-left: 7px;
}

.question-coin {
    border-bottom: 1px solid #434343;
    font-size: 11px;
    font-weight: 500;
}

.fio {
    display: flex;
}

.fio-block {
    margin-right: 20px;
}

.fio-block:last-child {
    margin-right: 0;
}

.personal-data__form p {
    margin: 0;
    font-weight: 500;
    margin-bottom: 5px;
}

.personal-data__form .input-style {
    min-height: 36px;
    width: 100%;
    margin-bottom: 15px;
    padding: 5px 10px;
    background: #fcfcfc;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.personal-data__form .button {
    display: block;
    margin-top: 15px;
    padding: 0 50px;
    border: 1px solid #86cd5b;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #86cd5b;
}

.personal-data__form .button:hover {
    color: #fff;
}

.personal-data__form .filled-btn:before {
    background: #86cd5b;
}

.personal-data__form .work {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.personal-data__form .work .work__name {
    width: 70%;
}

.personal-data__form .work .work__type {
    width: 28%;
}

.personal-data__form .wrap-button {
    display: flex;
    justify-content: space-between;
}

.personal-data__form .wrap-button button {
    width: 48%;
}

.personal-data__form .wrap-button button:first-child {
    background: #86cd5b;
    color: #fff;
}

.personal-data__form .wrap-button button:last-child {
    border: 1px solid #434343;
    color: #434343;
}

.personal-data__form .price {
    margin: 10px 0;
    font-size: 28px;
    font-weight: bold;
}

.personal-data__form input[type=checkbox] {
    margin-right: 5px;
}

.personal-data__form .coins {
    display: flex;
    align-items: center;
}

.personal-data__form .number-coin {
    margin: 0;
    margin-left: 7px;
    padding-right: 0;
    width: 8%;
    max-height: 25px;
    min-height: 0;
}

.table-publication {
    /* max-height: 430px; */
    overflow: auto;
}

.table-publication table {
    table-layout: fixed;
}

.table-publication table th {
    padding: 2px 10px 2px 10px;
    font-size: 14px;
    text-align: center;
    word-wrap: break-word;
}

.table-publication table td {
    padding: 5px 7px;
    font-size: 13px;
    font-weight: bold;
}

.table-publication table tr:nth-child(odd) {
    background: #f7f7f7;
}

.table-publication table .standart-link {
    font-weight: 400;
}

.table-publication table .certificate {
    width: 140px;
}

.table-publication table .download-button {
    border: none;
    padding: 5px 25px;
    border-radius: 6px;
    font-size: 12px;
    background: #ff8a11;
    color: white;
}

.table-publication table .participation-button {
    border: none;
    padding: 5px 22px;
    border-radius: 6px;
    background: #86cd5b;
    color: #fff;
}

.table-publication table .order-button {
    border: none;
    border-radius: 6px;
    background: #86cd5b;
    color: #fff;
}

.table-publication table .author {
    white-space: nowrap;
}

.table-title {
    border: 1px solid #d1cece;
}

.no-mailing {
    border-bottom: 1px solid #434343;
    font-size: 11px;
    font-weight: 500;
}

.no-mailing:hover {
    color: #313131;
}

.bg-arch {
    position: relative;
    padding: 75px 0 90px;
    background: url("/images/conc.jpg");
    background-blend-mode: multiply;
}

.bg-arch::after {
    content: "";
    position: absolute;
    height: 11px;
    width: 100%;
    bottom: 0;
    background: url("/images/circle-line2.png");
    z-index: 4;
}

.bg-help {
    position: relative;
    padding: 75px 0 90px;
    background: url("/images/pattern.png");
    background-color: #742fb5;
    background-blend-mode: lighten;
    margin-bottom: 50px;
}

.bg-help::after {
    content: "";
    position: absolute;
    height: 11px;
    width: 100%;
    bottom: 0;
    background: url("/images/circle-line2.png");
    z-index: 4;
}

.bg-arch .section-title {
    margin-bottom: 10px;
    color: #fff;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.bg-help .section-title {
    margin-bottom: 10px;
    color: #fff;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.competitions__descr {
    padding-right: 35px;
    font-size: 14px;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.competition__img img {
    width: 288px;
    height: 249px;
    object-fit: cover;
}

.cake {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 128px;
    width: 128px;
    background: #fff;
    border-radius: 50%;
    bottom: -64px;
    left: 50%;
    transform: translateX(-64px);
    z-index: 20;
}

.filters {
    padding-top: 30px;
    padding-bottom: 50px;
}

.filters .filter-nominations {
    display: flex;
    margin-top: 0px;
    margin-bottom: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.filters .search-competitions {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    padding: 7px 10px;
    background: #f7f7f7;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.filters .filter {
    display: flex;
    color: #d1cece;
    font-size: 14px;
    line-height: 14px;
}

.filters .filter-name {
    border-bottom: 1px dotted #313131;
}

.filters .filter-name_active {
    color: #ff4949;
    border-bottom: 1px dotted #ff4949;
}

.filters .placement-date,
.filters .duration-event,
.filters .date-end,
.filters .filters-name {
    margin-left: 10px;
    color: #313131;
    cursor: pointer;
}

.filters .placement-date .arrow-up,
.filters .placement-date .arrow-down,
.filters .duration-event .arrow-up,
.filters .duration-event .arrow-down,
.filters .date-end .arrow-up,
.filters .date-end .arrow-down,
.filters .filters-name .arrow-up,
.filters .filters-name .arrow-down {
    border: none;
    color: #ff4949;
    display: none;
}

.filters .nomination {
    margin-right: 25px;
    color: #313131;
    cursor: pointer;
    margin-bottom: 10px;
}

.filters .filter-nomination {
    border-bottom: 1px dotted #313131;
}

.filters .filter-nomination_active {
    color: #ff4949;
    border-bottom: 1px dotted #ff4949;
}

.participate-competition {
    width: 100%;
    padding: 10px 20px;
    background: #ec5225;
    display: block;
    max-width: 280px;
    border-radius: 4px;
    transition: 0.3s ease;
    border: 1px solid #ec5225;
    font-size: 20px;
    font-family: "Thin_foma", sans-serif;
    text-transform: uppercase;
    color: #fff;
}

.participate-competition:hover {
    color: #ec5225;
}

.participate-competition img {
    margin-right: 20px;
    width: 38px;
    height: 36px;
}

.works-list {
    margin-bottom: 50px;
}

.participate-competition:hover .upload-img path,
.add-work-btn:hover .upload-img path {
    fill: #ec5225;
}

.search-wrap {
    position: relative;
}

.search-wrap button {
    position: absolute;
    right: 20px;
    top: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
}

.search-wrap button img {
    height: 25px;
    width: 25px;
}

.competition-wrap {
    display: flex;
    flex-wrap: wrap;
}

.competition-wrap .competition {
    width: 47%;
    margin-right: 30px;
}

.search-competition {
    margin-bottom: 30px;
}

.work {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    max-width: 250px;
    padding-bottom: 15px;
    transition: 0.3s ease;
}

.work:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.19);
}

.work-wrap .works__img {
    text-align: center;
    margin-bottom: 15px;
    width: 250px;
    height: 250px;
    border: 1px solid #d1cece;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-wrap .works__img__title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #313131;
    cursor: pointer;
    transition: 0.3s ease;
}

.work-wrap .works__img__title:hover {
    color: #459dff;
}

.work-wrap .works__img__name {
    font-size: 14px;
    color: #434343;
}

.work-wrap .works__img__teacher {
    font-size: 14px;
    color: #d1cece;
}

.work-wrap .works__img__location {
    font-size: 14px;
    color: #313131;
}

.work-wrap .works__imgs-wrap {
    display: flex;
    flex-wrap: wrap;
}

.result-work {
    width: 100%;
    margin-bottom: 30px;
}

.result-work .dedicated {
    background: #e8e3de;
}

.result-work th,
.result-work td {
    padding: 7px;
}

.comp-page__news_conc-item-desc {
    padding: 20px 20px 25px 20px;
    background-color: #85bfe1;
    width: 50%;
}

.comp-page__news_conc-item-desc p {
    font-family: "Roboto Light", sans-serif;
    color: #fff;
    text-align: center;
    margin: 0;
}

.comp-page__news_conc-item-desc a {
    font-family: Roboto Medium, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
}

.comp-page__news_conc-item-desc a:hover {
    text-decoration: underline;
}

.comp-page__news_conc-item-desc .button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 12px;
    font-family: Roboto, Arial;
    font-weight: 500;
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #fff;
    border-radius: 3px;
    width: 138px;
    height: 31px;
    transition: 0.3s;
}

.comp-page__news_conc-item-desc .button:hover {
    color: #85bfe1;
}

.work-page {
    padding-top: 35px;
}

.work-page .section-title {
    margin-top: 75px;
}

.work-page .work-content__info {
    padding-left: 25px;
    padding-right: 20px;
    background: url("/images/last-publ.jpg");
    padding-bottom: 34px;
    padding-top: 21px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.19);
}

.work-page .work-content__info .work__name,
.work-page .work-content__info .work__teacher,
.work-page .work-content__info .work__anotation,
.work-page .work-content__info .date,
.work-page .work-content__info .competition-title {
    font-size: 16px;
    margin-bottom: 30px;
}

.work-page .work-content__info .work__name span,
.work-page .work-content__info .work__teacher span,
.work-page .work-content__info .work__anotation span,
.work-page .work-content__info .date span,
.work-page .work-content__info .competition-title span {
    font-weight: 600;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

.work-page .work-content__info .work__teacher {
    color: #000;
}

.work-page .work-content__info .caral {
    margin-top: 40px;
    margin-bottom: 48px;
    text-align: center;
}

.work-page .work-content__info .competition-title {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-align: center;
}

.work-page .work-content__info .date {
    font-size: 16px;
    font-family: "Roboto Light", sans-serif;
    text-align: center;
}

.work-page .work-content__info .add-work {
    text-align: center;
}

.work-page .work-content__info .add-work span {
    font-weight: 600;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

.work-page .work-content__info .add-work-btn {
    border: 1px solid #ec5225;
    margin-top: 10px;
    background: #ec5225;
    color: #fff;
    font-size: 14px !important;
    font-family: "Thin_foma", sans-serif;
    padding: 10px 20px;
    display: block;
}

.work-page .work-content__info .add-work-btn img {
    margin-right: 15px;
}

.add-work-btn:hover {
    color: #ec5225 !important;
}

.comp-page__news_conc-item {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.comp-page__news_conc-item img {
    width: 50%;
}

.comp-page__news_conc-item-desc {
    padding: 20px 20px 25px 20px;
    background-color: #85bfe1;
    width: 50%;
}

.competitions__main .breadcrumb {
    margin-top: 50px;
}

.single-competition-info .descr {
    font-family: "Roboto Light", sans-serif;
    font-size: 15px;
}

.single-competition-info .dates {
    margin-top: 40px;
    display: flex;
    align-items: center;
    font-family: "Roboto Regular", sans-serif;
}

.single-competition-info .dates img {
    margin-right: 22px;
}

.single-competition-info .dates p {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}

.single-competition-info .competition-price {
    margin-top: 50px;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
}

.single-competition-info .see-docs {
    font-family: "Roboto Light", sans-serif;
    margin-top: 15px;
    font-size: 14px;
}

.single-competition-info .see-docs a {
    color: #459dff;
}

.count-works {
    font-family: "Roboto Light", sans-serif;
}

.share-work {
    margin-left: auto;
    margin-right: auto;
    max-width: 530px;
    width: 100%;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.19);
    padding: 30px 40px;
    text-align: center;
    margin-bottom: 50px;
}

.share-works {
    display: flex;
    justify-content: center;
}

.social-item {
    margin: 0px 3px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    max-width: 65px;
    width: 100%;
    text-align: center;
}

.social-item i {
    font-size: 20px;
    color: #fff;
}

.social-item a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#social-vk {
    background: #5181b8;
}

#social-ok {
    background: #ee8108;
}

#social-tg {
    background: #24a1de;
}

#social-fb {
    background: #3a589e;
}

#social-tw {
    background: #1da1f2;
}

.prev-work span,
.next-work span {
    font-family: "Thin_foma", sans-serif;
    font-size: 26px;
}

.prev-and-next {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 100px;
}

.prev-work a:hover,
.next-work a:hover {
    color: #000;
}

.title-nominations {
    font-size: 15px;
    font-family: "Roboto Light", sans-serif;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.35);
}

.work .work__img {
    width: 250px;
    height: 189px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.express-competition__item {
    padding: 13px 0px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    background: #ff4949;
    border-radius: 5px;
    color: #fff;
}

.express-competition__item:hover {
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.19);
    transform: scale(1.1);
}

.express-competitions-wrap a:hover {
    color: #000;
}

.express-competition__title {
    font-size: 16px;
    margin-bottom: 0;
}


/* #express-section {
    background-color: #eb88fd;
    background-blend-mode: soft-light;
} */

.step-item__icon__wrapper {
    border-style: solid;
    border-width: 1px;
    border-color: #e1e1e1;
    border-radius: 50%;
    background-color: white;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 26px;
}

.step-item__icon {
    border-radius: 50%;
    background-color: #94db71;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-family: "Thin_foma", sans-serif;
    color: #fff;
}

.step-item__name {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: "Thin_foma", sans-serif;
}

.step-item__text {
    font-size: 14px;
    line-height: 20px;
}

.step-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-item__wrapper:not(:last-child)::after {
    content: "";
    position: absolute;
    background: url("/images/step-arrow.png") no-repeat;
    width: 52px;
    height: 17px;
    top: 29px;
    right: -29px;
}

.step-section {
    margin-top: 70px;
}

.express-form {
    max-width: 581px;
    margin-left: auto;
    margin-right: auto;
}

.step-title {
    font-weight: bold;
    margin-bottom: 19px;
    width: 100%;
}

.express-nominations {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.express-nominations option {
    padding: 5px;
}

.express-nominations option:checked {
    background: none !important;
    color: red;
}

.to-questionary {
    border-radius: 4px;
    background-color: #828282;
    font-family: "Thin_foma", sans-serif;
    font-size: 30px;
    color: #fff !important;
    padding: 15px;
    text-align: center;
    border: 1px solid #828282;
    width: 278px;
}

.express-form .red-btn:hover {
    color: #ff4949 !important;
}

.express-form .btn-wrapper {
    display: flex;
    align-items: center;
}

.express-notice {
    margin-left: 21px;
    font-size: 14px;
    color: #8a8a8a;
    line-height: 20px;
    margin-bottom: 0;
}

.diplomas-section {
    margin-top: 176px;
    margin-bottom: 70px;
}

.diplomas-block {
    max-width: 851px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.diplomas-block ul {
    margin-left: 40px;
}

.diplomas-block ul li {
    list-style: initial;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.selected-nomination {
    text-align: center;
    margin-top: 22px;
}

.express-form .red-btn {
    text-transform: initial;
    height: initial;
    background: #ff4949 !important;
    border: 1px solid #ff4949;
}

.search-nomination {
    border-width: 1px;
    border-color: #acacac;
    border-style: solid;
    width: 100%;
    padding: 13px 0;
    padding-left: 20px;
}

.search-nomination::-moz-placeholder {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.search-nomination:-ms-input-placeholder {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.search-nomination::placeholder {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.works-list .work__title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
}

.works-list .work__title:hover {
    color: #459dff;
}

.works-list .work .work__img {
    margin-bottom: 25px;
}

.works-list .work {
    text-align: center;
}

.works-list .work .work__name,
.works-list .work .work__location,
.works-list .work .work__teacher {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.works-list .work .work__teacher {
    color: #9b9b9b;
}

.works-list .work .brdr {
    border-width: 1px;
    border-color: #acacac;
    border-style: solid;
    border-radius: 5px;
}

.notice {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 25px;
}

.form-competition__button-wrap {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.form-competition__button-wrap .transparent-btn:before {
    background: #fff;
}

.form-competition__button-wrap .transparent-btn:hover {
    color: #86cd5b;
}

.form-competition__button-wrap .filled-btn:before {
    background: #A8A8A7;
}

.form-competition__btn {
    padding: 8px 66px;
    border: 1px solid #86cd5b;
    border-radius: 4px;
    background: #86cd5b;
}

.form-competition__btn:last-child {
    padding: 8px 100px;
    border: 1px solid #A8A8A7;
    background: transparent;
    font-size: 15px;
    color: #a8a8a7;
}

.form-competition__btn:last-child:hover {
    color: #fff;
}

.form-competition .form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-competition strong {
    display: block;
    font-size: 18px;
    margin-bottom: 7px;
}

.form-competition input[type=number] {
    width: 55px;
    height: 25px;
    border: 1px solid #d1cece;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.form-competition__personal-data {
    display: flex;
    flex-direction: column;
}

.form-competition .input-style {
    min-height: 36px;
    width: 100%;
    margin-bottom: 30px;
    padding: 5px 10px;
    background: #fcfcfc;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.form-competition__work {
    display: flex;
    flex-direction: column;
}

.border-form-competition {
    margin-bottom: 30px;
    padding: 12px 7px;
    border-radius: 4px;
}

.file-display {
    color: #d1cece;
}

.upload {
    margin: 0;
    padding: 10px 25px;
    border: 1px solid #86cd5b;
    border-radius: 4px;
    color: #86cd5b;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.upload.filled-btn:before {
    background: #86cd5b;
}

.upload:hover {
    color: #fff;
}

.red-star {
    position: relative;
    margin: 0;
    font-weight: bold;
    margin-bottom: 5px;
}

.red-star::after {
    content: "*";
    position: relative;
    color: #ff4949;
    font-size: 13px;
    top: -7px;
    right: -2px;
}

.placement-method {
    display: flex;
    margin-bottom: 15px;
}

.radio-button {
    width: 50%;
    background: #d1cece;
    font-size: 15px;
    font-weight: 500;
}

.radio-button:first-child {
    padding: 17px 11px 17px 9px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.radio-button:last-child {
    padding: 17px 9px 17px 11px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.radio-button__descr {
    padding-right: 10px;
}

.radio-button__title {
    display: flex;
    position: relative;
    padding-left: 45px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
}

.radio-button__title::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 4px solid #86cd5b;
    border-radius: 50%;
    background: #fff;
    left: 7px;
}

.radio-button__title span {
    margin-left: 10px;
    line-height: 16px;
}

.radio-button__title span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #313131;
    border-radius: 100%;
    left: 15px;
    top: 8px;
    transform: scale(0);
    transition: 0.4s;
}

input[type=radio]:checked+.radio-button__title>span::after {
    transform: scale(1);
}

.payment {
    font-size: 16px;
    font-weight: 500;
}

.payment-block {
    display: none;
}

.payment-block_active {
    display: block;
}

.result-payment {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.agreements {
    margin: 0;
    font-size: 14px;
}

.agreements-item label {
    margin: 0;
}

.modal {
    background: rgba(49, 49, 49, 0.6);
    position: fixed;
}

.modal-dialog {
    transform: translateY(50%);
    opacity: 1;
}

.fio-children {
    display: flex;
    align-items: flex-end;
}

.fio-children-block {
    margin-right: 20px;
}

.fio-children-block:last-child {
    margin-right: 0;
}

.past-work {
    margin-bottom: 30px;
}

.past-work label {
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 7px;
}

.form-substrate-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-substrate:hover {
    cursor: pointer;
}

#selectSubstrateModal .modal-dialog {
    max-width: 800px;
}

#selectSubstrateModal .modal-dialog .modal-footer,
#selectSubstrateModal .modal-dialog .modal-header {
    border: none;
}

.substrate-wrapper {
    display: flex;
}

.publications__main {
    position: relative;
    padding: 75px 0px 30px;
    background: url("/images/pattern.jpg");
}

.publications__main h2 {
    font-size: 30px;
    text-transform: none !important;
}

.publications__main .competitions__descr {
    font-size: 15px;
    font-family: "Roboto";
}

.publish-publication {
    width: 100%;
    margin-top: 22px;
    padding: 7px 20px;
    display: flex;
    align-items: center;
    max-width: 250px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

.publish-publication span {
    margin-left: 10px;
}

.publish-publication:hover {
    color: #fff;
}

.section-title {
    font-size: 44px;
    margin-bottom: 67px;
}

.section-title span {
    color: #ff4949;
}

.publications-filters .section-title {
    margin-top: 15px;
}

.publications-filters .search-wrap {
    margin-top: 15px;
}

.publications-filters .search-wrap::before {
    top: 22px;
}

.select-filters select {
    width: 100%;
    padding: 5px 10px;
    background: #f7f7f7;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.select2-selection.select2-selection--single {
    width: 100%;
    padding: 5px 10px;
    background: #f7f7f7;
    border: 1px solid #d1cece;
    border-radius: 4px;
    height: unset;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: unset;
    color: black;
}

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

.p15 {
    padding: 0px 15px;
}

.publications-list {
    padding-top: 20px;
    padding-bottom: 50px;
}

.publications-list .publication-card {
    padding: 15px 15px;
    margin-bottom: 25px;
    background: #f7f7f7;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.publications-list .publication-card__title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}

.publications-list .publication-card__title a:hover {
    color: #313131;
}

.publications-list .publication-card__date {
    margin-bottom: 5px;
    font-size: 14px;
    color: #d1cece;
}

.publications-list .publication-card__author {
    margin-bottom: 5px;
    font-size: 14px;
    color: #606060;
}

.publications-list .publication-card__descr {
    margin-bottom: 5px;
    font-weight: 500;
}

.publications-list .publication-card__img {
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
}

.publications-list .publication-card__img .img {
    width: 120px;
    height: 115px;
    margin-right: 10px;
    border: 1px solid #d1cece;
    border-bottom: 4px solid #A95A7A;
    border-radius: 4px;
}

.publications-list .publication-card__img .file {
    padding: 15px 0;
    border: 1px solid #d1cece;
}

.publications-list .publication-card__img .file img {
    width: 100%;
    height: 100%;
}

.publications-list .publication-card__tags {
    display: flex;
}

.publications-list .publication-card__tags .tag {
    margin-right: 22px;
    position: relative;
    font-size: 14px;
    color: #c8c7c7;
}

.publications-list .publication-card__tags .tag::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    right: -14px;
    top: 7px;
    background: #c8c7c7;
    border-radius: 50%;
}

.publications-list .publication-card__tags .tag:last-child:after {
    width: 0;
    height: 0;
}

#tags span:last-child {
    display: none;
}

.publication-thumb {
    margin-right: 4px;
}

.notice {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 25px;
}

.breadcrumb {
    padding-top: 50px;
}

.form-publication__button-wrap {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.form-publication__button-wrap .transparent-btn:before {
    background: #fff;
}

.form-publication__button-wrap .transparent-btn:hover {
    color: #86cd5b;
}

.form-publication__button-wrap .filled-btn:before {
    background: #A8A8A7;
}

.form-publication__btn {
    padding: 8px 66px;
    border: 1px solid #86cd5b;
    border-radius: 4px;
    background: #86cd5b;
}

.form-publication__btn:last-child {
    padding: 8px 100px;
    border: 1px solid #A8A8A7;
    background: transparent;
    font-size: 15px;
    color: #a8a8a7;
}

.form-publication__btn:last-child:hover {
    color: #fff;
}

.form-publication .form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-publication strong {
    font-size: 18px;
    margin-bottom: 7px;
}

.form-publication input[type=number] {
    width: 55px;
    height: 25px;
    border: 1px solid #d1cece;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.form-publication__personal-data {
    display: flex;
}

.form-publication .input-style {
    min-height: 36px;
    width: 100%;
    margin-bottom: 30px;
    padding: 5px 10px;
    background: #fcfcfc;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.form-publication__work {
    display: flex;
    flex-direction: column;
}

.border-form-publication {
    padding: 12px 7px;
    border-radius: 4px;
}

.textfile-display,
.imgfile-display {
    color: #d1cece;
}

.img-error {
    color: #721c24;
}

#openHelpWithTags {
    font-size: 14px;
    margin-top: 15px;
    border-bottom: 1px dotted #51a4fd;
    cursor: pointer;
    width: 203px;
    color: #51a4fd;
}

.upload {
    margin: 0;
    padding: 10px 25px;
    border: 1px solid #86cd5b;
    border-radius: 4px;
    color: #86cd5b;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.upload.filled-btn:before {
    background: #86cd5b;
}

.upload:hover {
    color: #fff;
}

.red-star {
    position: relative;
    margin: 0;
    font-weight: bold;
    margin-bottom: 5px;
}

.red-star::after {
    content: "*";
    position: relative;
    color: #ff4949;
    font-size: 13px;
    top: -7px;
    right: -2px;
}

.placement-method {
    display: flex;
    margin-bottom: 15px;
}

.radio-button {
    width: 50%;
    background: #d1cece;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    border: solid 5px #d1cece;
}

.radio-button_active {
    background: whitesmoke;
    border: solid 5px #5b9fb6;
    color: black;
}

.radio-button:first-child {
    padding: 17px 11px 17px 9px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.radio-button:last-child {
    padding: 17px 9px 17px 11px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.radio-button__title {
    display: flex;
    position: relative;
    padding-left: 45px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
}

.radio-button__title::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 4px solid #86cd5b;
    border-radius: 50%;
    background: #fff;
    left: 7px;
}

.radio-button__title span {
    margin-left: 10px;
    line-height: 16px;
}

.radio-button__title span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #313131;
    border-radius: 100%;
    left: 15px;
    top: 8px;
    transform: scale(0);
    transition: 0.4s;
}

input[type=radio]:checked+.radio-button__title>span::after {
    transform: scale(1);
}

.payment {
    font-size: 16px;
    font-weight: 500;
}

.payment-block {
    display: none;
}

.payment-block_active {
    display: block;
}

.result-payment {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.agreements {
    margin: 0;
    font-size: 14px;
}

.agreements-item label {
    margin: 0;
}

.modal {
    background: rgba(49, 49, 49, 0.6);
    position: fixed;
}

.modal-dialog {
    transform: translateY(50%);
    opacity: 1;
}

.form-publication input:disabled {
    background: #ececec;
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
    content: "\41C\430\43B\435\43D\44C\43A\438\439" !important;
}

.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
    content: "\41E\431\44B\447\43D\44B\439" !important;
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
    content: "\411\43E\43B\44C\448\43E\439" !important;
}

#count-annotation-symbols {
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
}

.publication-content {
    padding-top: 40px;
    padding-bottom: 70px;
}

.publication-content .btn {
    width: 100%;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.publication-content .green {
    border: 1px solid #86cd5b;
    background: #86cd5b;
}

.publication-content .orange {
    border: 1px solid #ff8a11;
    background: #ff8a11;
}

.publication-content__title {
    margin-bottom: 85px;
    padding-top: 10px;
    font-size: 44px;
    font-weight: bold;
    font-family: "Thin_foma", sans-serif;
    text-align: center;
}

.publication-content__image {
    margin-top: 30px;
}

.publication-content__tags {
    margin-bottom: 10px;
}

.publication-content__tags .tag {
    margin-right: 22px;
    position: relative;
    font-size: 14px;
    color: #c8c7c7;
}

.publication-content__tags .tag::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    right: -14px;
    top: 5px;
    background: #c8c7c7;
    border-radius: 50%;
}

.publication-content__tags .tag:last-child:after {
    width: 0;
    height: 0;
}

.publication-content__date,
.publication-content__author {
    font-family: "Roboto";
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 21px;
}

.publication-content__date span,
.publication-content__author span {
    font-size: 16px;
    font-weight: normal;
}

.publication-content__info {
    background: url("/images/last-publ.jpg");
    padding-bottom: 34px;
    padding-top: 21px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.19);
}

.publication-content .caral {
    margin-top: 40px;
    margin-bottom: 48px;
    text-align: center;
}

.publication-content__imgs {
    font-size: 16px;
    font-family: "Roboto";
    padding-left: 21px;
}

.publication-content__download img {
    margin-right: 18px;
}

.publication-content__download .download-block {
    padding-left: 21px;
    margin-bottom: 18px;
    font-size: 16px;
    font-family: "Roboto";
}

.publication-content__download .doc-block a {
    color: #628eab;
}

.publication-content__download .ppt-block a {
    color: #e45600;
}

.publication-content__text {
    margin-top: 0;
}

.publication-content__text .ql-editor {
    padding: 0;
    height: auto;
    font-size: 16px;
}

.publication-content .ql-container {
    font-family: "Roboto", sans-serif;
    height: auto;
}

.publication-content__passage {
    display: flex;
    flex-wrap: wrap;
}

.publication-content__passage img {
    margin-top: 10px;
}

.green.filled-btn::before {
    background: #fff;
}

.green.filled-btn:hover {
    color: #86cd5b;
}

.orange.filled-btn::before {
    background: #fff;
}

.orange.filled-btn:hover {
    color: #ff8a11;
}

.h940 {
    width: 100%;
    color: black;
    font-size: 25px;
    margin-bottom: 30px;
}

.publication-gallery {
    margin-top: 15px;
}

.publication-gallery img {
    max-height:250px;
    height:100%;
    margin: 3px;
}

.publication-thumb__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 90px;
    margin: 4px;
}

/*.new-publication {*/
/*    padding: 25px 15px;*/
/*    height: 70%;*/
/*    border: 1px solid #d1cece;*/
/*    border-radius: 4px;*/
/*}*/

.new-publication .title {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.new-publication .new-publication__snippet {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.new-publication .new-publication__snippet-img {
    margin-right: 15px;
}

.new-publication .new-publication__snippet-img img {
    width: 50px;
    height: 65px;
}

.new-publication .new-publication__snippet-descr .title {
    font-size: 15px;
    font-weight: bold;
}

.new-publication .new-publication__snippet-descr .title:hover {
    color: #313131;
}

.new-publication .new-publication__snippet-descr .author {
    font-size: 13px;
    color: #c8c7c7;
}

.new-publication .new-publication__snippet-descr .author span {
    display: block;
    font-size: 12px;
}

.confirmation .btn {
    width: 100%;
    padding: 15px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.confirmation .green {
    border: 1px solid #86cd5b;
    background: #86cd5b;
}

.confirmation .orange {
    border: 1px solid #ff8a11;
    background: #ff8a11;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100vh;
    width: 17%;
    background: #f7f7f7;
    border-right: 1px solid #d1cece;
}

.admin-nav .admin-profile {
    display: flex;
    align-items: center;
}

.admin-nav .admin-profile .page-name {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.admin-nav .admin-profile .page-name span {
    display: block;
    line-height: 18px;
    font-size: 18px;
    font-weight: bold;
}

.admin-nav a {
    margin-top: 6px;
}

.admin-nav a:hover {
    color: #313131;
    text-decoration: underline;
}

.admin-nav .active {
    color: #313131;
    text-decoration: underline;
}

.wrap-admin {
    display: flex;
}

main {
    width: 100%;
}

.publ-tab {
    position: relative;
    border: 1px solid #d1cece;
    border-top: none;
    padding: 10px 15px;
    margin-right: 7px;
    background: #fff;
    cursor: pointer;
    z-index: 1;
}

.publ-tab-content {
    position: relative;
    padding: 0px 20px 0px 20px;
    border-top: 1px solid #d1cece;
    margin-top: -1px;
    z-index: 0;
}

.publ-tab_active {
    border-bottom: none;
}

.wrapper-list {
    margin-right: 25px;
    width: 300px;
    margin-top: 15px;
}

.wrapper-list .list-header {
    text-align: center;
    border: 1px solid black;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
}

.wrapper-list .list-body {
    max-height: 300px;
    border: 1px solid black;
    border-top: none;
    overflow-y: auto;
    margin-bottom: 0;
}

.wrapper-list .list-body__item {
    border-bottom: 1px solid black;
    padding: 5px 10px;
    cursor: pointer;
}

.wrapper-list .list-body__item:last-child {
    border: none;
}

.wrapper-list .list-body__item:hover {
    background: #c2dfff;
}

.wrapper-list .list-body__item_active {
    background: #c2dfff;
}

.adding {
    cursor: pointer;
    max-height: 300px;
    border: 1px solid black;
    border-top: none;
}

.adding:hover {
    background: #c2dfff;
}

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

.wrapper-form .add-form {
    display: none;
    flex-direction: column;
}

.wrapper-form .add-form textarea {
    margin-bottom: 5px;
}

.wrapper-form .edition-form {
    display: none;
    width: 259px;
    flex-direction: column;
}

.wrapper-form .edition-form input {
    margin-bottom: 5px;
    width: 100%;
}

.wrapper-form .edition-form .wrap-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wrapper-form .form_active {
    display: flex;
}

.competition-tab {
    position: relative;
    border: 1px solid #d1cece;
    border-top: none;
    padding: 10px 15px;
    margin-right: 7px;
    background: #fff;
    cursor: pointer;
    z-index: 1;
}

.competition-tab-content {
    position: relative;
    padding: 0px 20px 0px 20px;
    border-top: 1px solid #d1cece;
    margin-top: -1px;
    z-index: 0;
}

.competition-tab_active {
    border-bottom: none;
}

.create-competition {
    margin-right: 35px;
    padding: 15px;
    width: 25%;
}

#createCover {
    border: none;
}

#createCover {
    padding-left: 0;
}

#createTypeCompetition {
    min-height: 36px;
    width: 100%;
    padding: 5px 10px;
    background: #fcfcfc;
    border: 1px solid #d1cece;
    border-radius: 4px;
}

.a-work {
    padding: 25px;
}

.wrap-a-com-work a {
    cursor: pointer;
}

.wrap-a-com-work a:hover {
    color: #313131;
    text-decoration: underline;
}

.work-tab {
    position: relative;
    border: 1px solid #d1cece;
    border-top: none;
    padding: 10px 15px;
    margin-right: 7px;
    background: #fff;
    cursor: pointer;
    z-index: 1;
}

.work-tab-content {
    position: relative;
    padding: 0px 20px 0px 20px;
    border-top: 1px solid #d1cece;
    margin-top: -1px;
    z-index: 0;
}

.work-tab_active {
    border-bottom: none;
}

.substrate-form {
    margin: 0px 25px 25px 25px;
    display: flex;
    flex-direction: column;
}

.substrate-form input {
    margin-bottom: 20px;
}

.substrate-form label {
    margin-bottom: 5px;
}

.substrate-img {
    margin-top: 20px;
    width: 175px;
}

.content_active.competition-tab-content[data-tab="2"] {
    display: flex;
}

.substrate-img-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-mailing {
    padding-top: 25px;
    padding-left: 25px;
    display: flex;
}

.mailing-option {
    width: 49%;
}

.mailing-option .button {
    padding: 8px 25px;
    border: 1px solid #f80;
    background: #f80;
    font-weight: bold;
    color: #fff;
}

.mailing-option .button:hover {
    color: #f80;
}

.mail-demo {
    width: 49%;
    margin-left: 20px;
}

.form-mailing {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.form-mailing label {
    margin-top: 15px;
    margin-bottom: 10px;
}

.form-mailing button {
    margin-top: 15px;
}

.progress {
    width: 100%;
    height: 50px;
}

.progress-wrap {
    background: #f80;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}

.progress-wrap .progress-bar {
    background: #ddd;
    left: 0;
    position: absolute;
    top: 0;
}

.history-mailing__table {
    margin-top: 25px;
    border-collapse: collapse;
}

.history-mailing__table th,
.history-mailing__table td {
    border: 1px solid black;
    padding: 5px;
}

.history-mailing__table .bg-blue {
    background: #c2dfff;
}

.publ-substrate {
    display: flex;
}

.publ-substrate .form-group {
    width: 30%;
    margin-right: 35px;
}

.moderation-date-add {
    font-size: 12px;
    margin-bottom: 0;
}

.shadow-card {
    transition: 0.3s ease;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid rgba(189, 189, 189, 0.19);
    box-shadow: 0 9px 46px 0 rgba(34, 34, 34, 0.06), 0 1px 11px 0 rgba(34, 34, 34, 0.06);
}

.competition__descr {
    color: #000;
}

.moderation-work-wrapper .red-btn,
.competition .red-btn {
    height: auto !important;
}

.wrap-a-work {
    margin-top: 8px;
    display: flex;
}

.wrap-a-work .img {
    width: 250px;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.wrap-a-work .annotation {
    max-width: 700px;
}

.wrap-a-work .author {
    display: flex;
    flex-direction: column;
}

.wrap-a-work .place {
    max-height: 30px;
}

.wrap-a-work .btn-form {
    display: none;
}

.admin-main {
    width: 100%;
    background-color: #ddd;
    background-blend-mode: soft-light;
    background-image: url("/images/pattern.png");
}

.tabs {
    background: #fff;
}

.admin-main .publication-card__title {
    font-weight: normal;
}

.admin-main .publish-card__date {
    font-size: 14px;
}

.admin-main .red-btn {
    height: auto !important;
}

.admin-main .publications-list .shadow-card,
.admin-main .competition-work-list .shadow-card {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.admin-menu-item a {
    font-family: "montserratregular", sans-serif;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.admin-menu-item:last-child a {
    font-size: 14px;
}

.admin-menu-item a.active {
    text-decoration: none;
    background: #ff4949;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

.competition-tab-content {
    padding-top: 10px;
}

.admin-main .create-competition {
    max-width: 500px;
    width: 100%;
}

.wrapper-form .edition-form input {
    padding: 5px;
}

.login-page {
    padding-top: 60px;
    margin-bottom: 100px;
}

.login-page form {
    max-width: 450px;
    width: 100%;
}

.login-page input {
    background-color: #e8f0fe !important;
}

h1 {
    font-family: "Thin_foma", sans-serif;
    margin-bottom: 50px;
}

#forgot-password {
    margin-left: 40px;
}

#social-sign {
    font-family: "Thin_foma", sans-serif;
    text-align: center;
    font-size: 28px;
}

.register-page {
    padding-top: 60px;
    margin-bottom: 100px;
}

.register-page form {
    max-width: 450px;
    width: 100%;
}

.register-page input {
    background-color: #e8f0fe !important;
}

h1 {
    font-family: "Thin_foma", sans-serif;
    margin-bottom: 50px;
}

h1 button {
    margin: 10px auto;
    display: block;
}

#forgot-password {
    margin-left: 40px;
}

#social-sign {
    font-family: "Thin_foma", sans-serif;
    text-align: center;
    font-size: 28px;
}

.register-page label {
    margin-top: 15px;
}

.register-page .alert {
    background: none;
    border: none;
    position: absolute;
    right: 0;
    font-size: 13px;
    top: 5px;
}

.fz-13 {
    font-size: 13px;
}


/* .help__page {
    margin-top: 82px;
    padding: 70px 0;
} */


/*==========  Desktop First Method  ==========*/


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1199px) {
    .header-top__nav-item a {
        font-size: 18px !important;
        padding-right: 0 !important;
    }
    .header-top__nav-item:first-child {
        margin-left: 30px;
    }
    .header-top .container {
        max-width: 100%;
    }
    .main-form img {
        bottom: -20px;
        right: 56px;
        max-width: 200px;
    }
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 991px) {
    .nav-block .profile span {
        font-size: 15px;
    }
    .account__main .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
    }
    .single-competition-info {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .filter-item {
        margin: 10px 0;
    }
    .main-form img {
        display: none;
    }
    .main-page__news_conc-item {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        max-width: 500px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 767px) {
    .nav-block .profile img {
        display: none;
    }
    .step-item__wrapper:not(:last-child)::after {
        content: none;
    }
    .publications__main .competitions__descr {
        margin-bottom: 50px;
    }
    .form-publication__btn {
        max-width: 470px;
        width: 100%;
        margin: 0 auto 10px !important;
        text-align: center;
    }
    .form-publication__button-wrap {
        flex-direction: column;
    }
    .main-page__questions {
        padding-top: 0 !important;
    }
    .questions-item {
        margin-bottom: 20px;
    }
    .main-descr__item {
        line-height: 1.3;
    }
    .head-text {
        margin-bottom: 40px !important;
    }
}

@media only screen and (max-width: 575px) {
    .to-questionary {
        max-width: 210px;
        width: 100%;
        font-size: 25px;
    }
    .main-page__news_conc,
    .main-page__last_pub {
        padding: 10px 0 20px;
    }
    .head-text {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    .main-descr__item {
        margin-bottom: 0 !important;
    }
    .fio-children,
    .fio {
        flex-direction: column;
        align-items: initial !important;
    }
    .fio-children .fio-children-block,
    .fio-children .fio-block,
    .fio .fio-children-block,
    .fio .fio-block {
        margin-right: 0;
    }
    .newsletter .section-title {
        font-size: 35px !important;
    }
    .main-page__last_pub-item {
        border: 0.5px solid #ebecee;
    }
    .main-page__surprise {
        padding-bottom: 20px !important;
    }
    .main-page__news_conc-item img,
    .main-page__surprise img,
    .comp-page__news_conc-item img {
        display: none;
    }
    .main-page__news_conc-item-desc,
    .comp-page__news_conc-item-desc {
        width: 100% !important;
    }
    .news_conc-item-down {
        margin-top: 20px !important;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
    .single-competition-info .dates p {
        flex-direction: column;
    }
    .bg-arch {
        padding: 30px 0 80px;
    }
    .main-page__surprise {
        padding-top: 10px;
    }
    .banner__wrap {
        padding-top: 0;
    }
    .placement-method {
        flex-direction: column;
    }
    .placement-method label {
        width: 100%;
    }
    .agreements-item label {
        display: initial;
    }
    .file-display {
        display: block;
        margin-top: 10px;
    }
    .main-page__main {
        padding-bottom: 0 !important;
    }
    .main-descr {
        margin-top: 0 !important;
    }
    .main-page__last_pub-item span:nth-child(2) {
        display: block;
    }
    .main-page__questions a {
        font-size: 18px !important;
    }
    .modal_question .modal-header button {
        width: 45px !important;
        height: 45px !important;
        right: -6px !important;
    }
    h2 {
        font-size: 30px !important;
    }
    .head-text {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
    .main-page__items_item h2 {
        font-size: 27px !important;
    }
}

@media only screen and (max-width: 400px) {
    .express-form .btn-wrapper {
        display: block;
    }
    .banner__wrap input {
        max-width: 200px;
    }
    .banner__wrap input::-moz-placeholder {
        font-size: 12px;
    }
    .banner__wrap input:-ms-input-placeholder {
        font-size: 12px;
    }
    .banner__wrap input::placeholder {
        font-size: 12px;
    }
}


/* Custom, iPhone Retina */


/*==========  Mobile First Method  ==========*/


/* Custom, iPhone Retina */


/* Extra Small Devices, Phones */


/* Small Devices, Tablets */


/* Medium Devices, Desktops */


/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
    .header-top__nav-item:first-child {
        margin-left: 50px;
    }
}

.select2 .select2-container {
    width: 100% !important;
}

.download-link {
    display: inline-flex;
    align-items: center;
}

.download-link-doc::before {
    padding-right: 15px;
    content: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAoCAYAAAAG0SEsAAACzElEQVRYhWNkQAOMzMyrmJiYbdDFqQ3+/ft7BMNyZla2ZyLqepISuiY0s/jF5TMMb25ees6CLsHCwXlP0c5DUs0zlHbeXjYdZDkDhuXhyw7lMDAwnKedzQjAwszKuoGJidkCJrIi3IqFnZefLMOYmFkYzLNrGST0zIiznJGR0UxGR09cyYQ4DbjAlzdvGE6uXcGwrymXwaaii0HOxJ6w5SACZLFLei5Flj+/eR1suaikJMORjlIG67JOBnkzR7x6mCiyEQsomzSNQdvElOFoVznDw1P76Gs5OycnQ/OiFVAHVDA8OLkXp1qM1A4CF7ZvZrh94iiKGLeAIINXYTlJDqiNi2A41l3J8K+giUHJxoM4y79/+sjw/tlTFLE/P38SZfHFo0cYXj5+DGZ7RsUyPLx5g+F4bzXD/39/GZTtvAlbbhkeA8akADYuLgZGRkaGmQ01WHVdWjyVQcbUjoGdkxe/5eQAYVl5hqrdRxl+//iBofvosgUMF3bvZPj//x9hn2OLc1KAqoU1g4GnL1wHBy8fVt1ExzkpAKSfGEC1OCcHUD2fkwKw+vzMhjUM1w/hL51gwKe4iuHRlYsMl3ZuhYtp2jkxmASEENQ7+HwOcjUxLocBQWkZBn13b+IUI4GhHefYwMiJc3LB4PP58ZVLGC7v2YkiFlzXwnDr2GEMcWxA18WdqBISq+WcfPwMglLSKGLMrKxYxXHpJwZgtRxUIyHXSghxKazi5IKhEeekAKrHOSmAJnFObTD44vzQwjngdhwIRHZMYLh+cC+cTwwAhZpdfAp5lgvLyTPAOo7sXFwofGIASD0ucH3jEvDgAE7LtR1dwRjOF0PlkwP+/Pj+iYmZNevSylkVf37+EP3///8pqrXbCYG/P398XRFiuZSBgWEpTOnAJ7h7Z04x7GGYTDNLQOZjA4xMoKEvZjoMff39e+Tf379hcAEGBgYAXVLouENQQxQAAAAASUVORK5CYII=");
}

.download-link-ptt::before {
    padding-right: 15px;
    content: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAoCAYAAACfKfiZAAADQ0lEQVRYhc2YX0hTURzHv7rNP0vTqZjZS6smkpTrHwsqGaETlvVQD5Y+SDToKQJ9EqKnVHpZRRADC3txWkEPgRn2pEQlhKyHjWWtDdNp063rtM1tdzPuYSN1d/Peuz/1hbN77+7vnO/n3nvu75xzwSItgPUsFY2YBaCS+XnScJANLi3y0RHceG9lmqpmA5g5XVW60KGorsoUABWkYwCIAewAIInuTz07e3iKCtJaIY2X5ImRwyNeHH3mIxv/3GOcEOJNpKoswevmIwSEKwB55g80NYJNY3pscmLStYyGkU942ViP/cWFnACILtftShlg1OaGPxTGzKofF8ZMeKVRbguRm7LrFh0ok+L5pUNw+tYIhG3Fn10ARkerijlDZASAD0TaAeZWAhg2/yRl2u3DxdpKfKF+Ewj7ylpcPLd3haPKCsR4Y3Pj5th0XAUG4qHlB/QqReYA7mlqSNmq5QCNmkcfEIqsx52LA/AGaFIhHSotkKA4T5S0pU0A1BqN+v5JrNGRtAAU5Ylgvn6SO8BKkCbm5eXlkMvlKZk77N+x5PYgEE5+Max9gDFvbW1NCeDF8BAB2E6sABazGff1evAa1jZqHfhFUZxCNwHICiSQlxbCuRrA3Pw8pFIpJBJJ4tosCoVC8Pl8yBfnQlEmhVQsgo8OJ4zflIiYTvPx6nHcOrWXHA8ODoKiKF6FqcOIaeNdxzFIRMlvY8ZSMVfxAjAYDOQN0ev1oOn05ApeAFarFR6PB11dXVAqlRgfH88uQExNTU2wWCxQq9Vob2+H1+vNLkBPTw/a2trIvtFoTOlOCBqMWlpa4HK5IJPJ0NvbS46zCrC4uAidToe+vj5UVFQINucNoNVq4XA40N3dDZVKlZKxIACNRkNKOpUUwG63w2Qy8bJj6vARK0BONHt2dnYKvlZRLreRjBXgnKIC86tBBMPxUyhGQ+YFsr1Sx75+zRPl4LyCW+dkBaguysftM4knJKO2JbK9o97HySSZ/vlgJCgPnNi9E4WS5JPNRPrm9eHt3N+ZkiAAg7ZWkDkdiUzc/ez4OjDtvBb9BDSb1nXBduq3zg4AeApAFwv9f/oAs5bLlPzbrDOaATARmf40x3g0bnIG8AeYr24RoeAn3gAAAABJRU5ErkJggg==");
}


.my-account .cabinet::before {
    display: inline-block;
    transform: translate(0px, 7px);
    content: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAcCAYAAACK7SRjAAADTklEQVRIib2UW0gUURjHvzNXZ3dz3c2yLE1x0bLIJMqyKIiKIoheqpWIDSSK7uFD9ZBLN6qX7KELpIES0XZ5LbogRRBp9RJ2MdHW1C5bujare5ndmTlxpjTj7NoWW/+Xc77z/77f+ebMmUGQpJzVF4sB6+nACa0et+trMlWjwiuOXM5S+zqvRT+9WaAH+1ljkWGBz8zv5ScUua8e23qOKkoG7qyuWxjpaGrUAj6BxKwlE5AggRbwAVajRk6aY8Gd6zX7V1DFo8Erjl6xhlvv+zT5o8iPd0D6os3AZeYZHgGHXtyGwSceAF0DqXjp+Wsnd2+jIOQhqRUAUPu76wmYAG2rq4fBRjecAOZZq8G6ZIcRK96nW5yHGuwUJCG817ucjGPmbwTEiZQPxpGUAz9hKuhhmdHDgd1UQiK4JvtMiOFAyC6mvJESc0qMCCvBMsqMB3ceauCwrhm3AhBl/yqW+x5izFFePLjH7VJZsz2GVQXU/h6qYKTULx1GhPi0dsqMByfixuU/J2Pw2Q3KG5La1wWRt08AsTwwUvopKiEh3Da5EgkmHOl4DAOP6ofv9ZBin9uh/9ZxAKyDkFva5Dlc2UZBEt1zovUHzuwLt94/QcCMZAUhpwQYwQSqvwuiH14ZOXxW4RchZ2aex+0KUYDR4ETOg7Vroz0ttbFer/WXIl7CYm5pI2vLXuVxu6JUYTLwEZss1qOhNaBrYxAntqI0ywWP2xWgEv+nqM7L9tabkB6bBoClpPtAbHfT6cp31PLQZN6eujJJ9l4yfW1zMGqE2vR3UszZ4ZC9qCEm2rc312zSh+HlO89uyXj/8DwbCyFAiCQCRnE/urjiFT+w0QHDCo6d3hm0TS1qrtkU5ebtqSvO6Go8R8DyxHL4OG0DqKItHiOxMIb0z89gUkstmPte5qm85R4ALGYLZsy+KQU6Jwey5kB36S7QueSP+ufhIlAskyA4dgbYeh6AGPJNsa+susJIsreU+L7CdfHe7x8pbM0H0iTSY8ApchXDK36OdEt2ToXCGQUGhdEiDoacl8abUwImwoj9McFs3B9XqvRP4cZl5hQZ8puPUObfiI/4f8I13qKzsUHG7H+d0q4xK/g4f+4yB9KVuSklAyPrrHj3G0J2LVwzv/tyAAAAAElFTkSuQmCC");
}
.expr-bg{
     background: url("/images/expr-bg.jpg");
}
.counter {
    align-items: center;
    justify-content: center;
    display: inline-flex;
    color: #ffffff;
    background: #ff4949;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 13px;
}
.white-btn{
    color: black;
    text-decoration: black 1px underline;
    margin:0 5px 0 5px;
    display: flex;
}
.white-btn:hover{
    color: black;
    text-decoration: black 1px underline;
}
.icon{
    height: 18px !important;
    width: 18px !important;
}
abbr{
    cursor: pointer !important;
}
.one_nomination{
    margin:0 10px 0 10px;
}
.no-decoration{
    text-decoration: none;
}
.no-decoration:hover{
    text-decoration: none;
}
.search-diploma{
    padding: 25px;
}
.form-label{
    font-family: "Thin_foma", sans-serif;
}