:root {
    --main-color: #002d5c;
    --main-color-hover: #2294fe;
    --banner-main-color: rgb(0 45 92 / .1);
}

body {
    height: 100vh;
    font-size: 14px;
}

.bodyContent {
    /* height: calc(100% - 106px); */
    /* position: relative; */
    min-height: calc(100vh - 163px);
}

.loginPage {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.login {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #d8d8d8;
    padding: 30px;
    border-radius: 16px;
    -webkit-box-shadow: 0px 10px 13px -7px #d8d8d8, 5px 5px 15px 5px rgb(216 216 216 / 0%);
    box-shadow: 0px 10px 13px -7px #d8d8d8, 5px 5px 15px 5px rgb(216 216 216 / 0%);
    position: relative;
    background-color: white;
}

.login:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #e1f0ff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(6deg);
    border-radius: 16px;
}

.loginForm__h2 {
    text-align: center;
    margin-bottom: 50px;
}

.website__btnWrap {}

.website__btn {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    border: none;
    background-color: var(--main-color);
    font-weight: 500;
    color: #fff;
    border: 1px solid #ffffff;
    transition: 500ms all;
    cursor: pointer;
}

.website__btn:focus {
    outline: none;
}

.website__btn:hover {
    background-color: var(--main-color);
}


.area {
    background: #4e54c8;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    height: 100vh;


}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: hsl(0deg 0% 97%);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}


@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.signForm__errorMsg {
    border: 1px solid red;
    border-radius: 6px;
    text-align: center;
    background-color: rgb(255 0 0 / 10%);
    padding: 10px 10px;
    font-weight: 500;
    color: red;
    margin-bottom: 20px;
}

.inputGroup__block-captcha {
    display: flex;
}

.inputGroup__block-captcha .inputGroup__text {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.inputGroup__text:focus {
    outline: none;
}

footer {
    height: 50px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.vote {
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
}

.yourLRP {
    border: 1px solid var(--main-color);
    border-radius: 6px;
    padding: 20px 50px;
    background-color: var(--banner-main-color);
}

.yourLRP__wrap {
    margin: 50px 0;
}

.yourLRP__h4 {
    text-align: center;
}

.yourLRP__value {
    font-weight: bold;
    font-size: 50px;
    text-align: center;
}

.yourLRP__sub br {
    display: none;
}

.yourLRP__sub {
    font-style: italic;
    font-size: 14px;
    color: #343a40;
    text-align: center;
}

.variable {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.variable_chart {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    justify-items: center;
}

.variable__elem {
    border: 1px solid #d8d8d8;
    padding: 30px;
    border-radius: 16px;
    -webkit-box-shadow: 0px 10px 13px -7px #d8d8d8, 5px 5px 15px 5px rgb(216 216 216 / 0%);
    box-shadow: 0px 10px 13px -7px #d8d8d8, 5px 5px 15px 5px rgb(216 216 216 / 0%);
    position: relative;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.variable__elem:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--banner-main-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(6deg);
    border-radius: 16px;
}

.variable__elem:nth-child(2):after {
    transform: rotate(-6deg);
}

.variable__h2 {
    -webkit-text-stroke: 1px var(--main-color);
    -webkit-text-fill-color: var(--banner-main-color);
    font-weight: bold;
    font-size: 30px;
    font-style: italic;
}

.variable__content {
    border: 1px solid #ff5312;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    background-color: rgb(255 83 18 / 10%);
}

.variable__point {
    font-weight: 500;
    margin-bottom: 15px;
}

.variablePoint__sub {}

.variablePointSub__title {}

.variablePointSub__textWrap {
    margin-left: 30px;
}

.variablePointSub__text {}

.variable__btnWrap {}

.variable__btn {}

.variable__btn-disabled {
    cursor: no-drop;
    background: #bfbfbf;
}

.variable__btn-disabled:hover {
    background: #959595;
}

.bg-dark {
    background-color: var(--main-color) !important;
}

.important {
    margin-top: 100px;
    display: flex;
    border: 1px solid red;
    padding: 50px;
    border-radius: 16px;
    background-color: rgb(255 0 0 / 90%);
    align-items: center;
}

.important__icon {
    font-size: 100px;
    line-height: 60%;
    font-weight: bold;
    color: #fff;
}

.important__text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    flex: 1;
    margin-left: 30px;
}

.blueInforemer {
    border: 1px solid var(--main-color);
    border-radius: 6px;
    padding: 20px 50px;
    background-color: var(--banner-main-color);
}

.blueInforemer__title {}

.blueInforemer__text {}

.variable__elem-green:after {
    background-color: rgb(11 104 0 / 50%);
}

.variable__elem-red:after {
    background-color: rgb(165 0 0 / 50%);
}


.variable__elem-green .variable__content {
    border-color: #297a20;
    background-color: rgb(41 122 32 / 10%);
}

.important__p {
    text-align: center;
    font-size: 16px;
    margin-top: 50px;
    font-style: italic;
}

nav {
    position: relative;
    z-index: 2;
}

.canvasWrap {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.noData {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.variable__content-blue {
    border: 1px solid var(--main-color);
    background-color: var(--banner-main-color);
}

.variable__content-blue .variable__point {
    margin-bottom: 0;
}

.language__btn {
    /* border: 1px solid #e5f2ff; */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    border: 0;
}

.language__btn:hover {
    color: #d8bfbf;
}

.language__btn:focus {
    outline: none;
}

.language__btn img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.langWrap__all-sub {
    position: absolute;
    -webkit-box-shadow: 0 5px 10px rgb(30 32 37 / 12%);
    box-shadow: 0 5px 10px rgb(30 32 37 / 12%);
    background-color: #fff;
    /* width: 150px; */
    right: -6px;
    top: 40px;
    display: flex;
    flex-direction: column;
    /* padding: 20px; */
    border-radius: 6px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.26s ease;
}

.langWrap__all {
    position: relative;
}

.langWrap__row {
    color: #000 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    /* margin-bottom: 10px; */
    padding: 10px;
    margin: 0;
    text-align: center;
    justify-content: center;
}

.langWrap__row:hover {
    text-decoration: none;
    background-color: whitesmoke;
    border-radius: 6px;
}

.langWrap__row-selected {
    text-decoration: none;
    background-color: whitesmoke;
    border-radius: 6px;
}

.langWrap__all:after {
    position: absolute;
    top: 55%;
    right: -3px;
    width: 0;
    height: 0;
    clear: both;
    content: '';
    border-color: #d0a749 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 2.5px 0 2.5px;
    transform: translate(-50%, -50%);
}

.langWrap__row:last-of-type {
    margin-bottom: 0;
}

.langWrap__row-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #e5f2ff;
    margin-right: 10px;
}

.make_choice {
    margin: 50px 0;
}

.variable__point-green {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: green;
}

.variable__point-red {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: red;
}

.langWrap__all-sub-active {
    transform: scaleY(1);
}

.userInfo__exitBttn {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 6px;
    font-weight: bold;
    transition: 500ms all;
    text-decoration: none !important;
}

.userInfo__exitBttn:hover {
    background-color: #fff;
    color: #004d99 !important;
}


#loadingBlock {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 500ms all;
}

#loadingBlock.show {
    display: block;
}


.sk-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
}

.sk-circle .sk-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sk-circle .sk-child:before {
    display: block;
    width: 15%;
    height: 15%;
    margin: 0 auto;
    content: '';
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.bodyContent {
    position: relative;
    overflow: hidden;
}

.mt-5 {
    margin-top: 0 !important;
    padding-top: 3rem !important;
}

.changes__btn {
    /* cursor: pointer; */
}

.changes__btn h1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(18px, 2.7vw, 32px);
}

.arrow {
    width: 1em;
    height: 1em;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.changes {
    margin-top: 30px;
}
.changes h4, .changes h5 {
    font-size: clamp(12px, 2vw, 24px);
}
.changes__wrapper dl,
.changes__wrapper ol,
.changes__wrapper ul {
    padding-left: clamp(5px, 3.4vw, 40px);
}

.changes__table {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 484px;
    margin: 20px auto;
    border: solid 2px #000;
}

.changes__row-header {
    display: flex;
    font-weight: bold;
    border-bottom: solid 1px #000;
}

.changes__row {
    display: flex;
}

.changes__row:not(:last-child) {
    border-bottom: solid 1px #000;
}

.changes__col {
    flex: 1;
    padding: 5px;
    min-width: 50%;
    font-size: clamp(12px, 1.6vw, 16px);
}

.changes__col:not(:last-child) {
    border-right: solid 1px #000;
}


.packageOfChangesWrapper {
    border: 1px solid #d8d8d8;
    padding: clamp(5px, 1.7vw, 20px) clamp(10px, 4.2vw, 50px);
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 13px -7px #d8d8d8, 5px 5px 15px 5px rgb(216 216 216 / 0%);
    box-shadow: 0px 10px 13px -7px #d8d8d8, 5px 5px 15px 5px rgb(216 216 216 / 0%);
}

.packageOfChangesWrapper__checkboxLabel {

    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
}

.vote__wrap {
    display: flex;
    flex-direction: column;
}

.packageOfChangesWrapper {
    transition: 500ms all;
    order: 0;
}
.variable__wrapper {
    transition: 500ms all;
    order: 1;
}
.variable__wrapper-disabled {
    filter: grayscale(1) opacity(0.5);
    cursor: no-drop;
}
.variable__wrapper-disabled:hover ~ .packageOfChangesWrapper {
    border: 1px solid var(--main-color);
    border-radius: 6px;
    padding: 20px 50px;
    background-color: var(--banner-main-color);
}


.packageOfChangesWrapper__checkboxLabel input {
    margin-right: 10px;
}

.variable__elem-disabled.variable__elem:after,
.variable__elem-disabled .variable__h2,
.variable__elem-disabled .variable__content {
    filter: grayscale(1) opacity(0.4);
}

.logo__img {
    opacity: .3;
}


@media(max-width: 1200px) {}

@media(max-width: 1024px) {
    .vote__h2 {
        font-size: 24px;
    }

    .yourLRP__h4 {
        font-size: 20px;
    }

    .variable__elem {
        padding: 20px;
    }

    .variable__point {
        font-size: 15px;
    }

    .canvasWrap {
        max-width: 270px;

    }

    .navbar-text {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 20px 0 !important;
    }

}

@media(max-width: 768px) {
    .variable {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 576px) {
    .navbar-brand {
        font-size: 11px !important;
    }

    .blueInforemer {
        padding: 20px;
    }

    .langWrap__all-sub {
        right: initial;
        left: 0;
    }
    .variable__elem {
        max-width: calc(100% - 20px);
        justify-self: center;
    }
}
