* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Css variables, they gonna change depends of daytime */
:root {
    --main-font: 'Montserrat', sans-serif;
    --bg-color: #1D1D25;
    --font-color: #ffff;
    --input-bg: #ffff;
}

li {
    list-style: none;
}

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

body {
    background-color: var(--bg-color);

}

.wrapper {
    padding: 51px 0px 0px 150px;
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    max-width: 1621px;
}

.header__logo {
    height: 28px;

}

.header__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 985px;
    width: 100%;
}

.header__link {
    font-size: 20px;
    font-family: var(--main-font);
    font-weight: 600;
    color: var(--font-color);
    display: flex;
    align-items: center;
    gap: 0 5px;
    transition: color .4s ease;
}

.header__link:hover {
    color: #4C53FF;
}

.themeToggle {
    position: relative;
    border: none;
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 8px;
    width: 60px;
    height: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    cursor: pointer;
    outline: none;
}

.themeToggle-dot {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background-color: white;
    position: absolute;
    top: 4px;
    right: 4px;
}


.toNight .themeToggle-dot {
    right: 4px;
    animation-name: animation1;
    animation-duration: .4s;
    animation-iteration-count: 1;
}

@keyframes animation1 {
    0% {
        left: 4px;
    }

    100% {
        left: 34px;
    }
}

.toLight .themeToggle-dot {

    animation-name: animation2;
    animation-duration: .4s;
    animation-iteration-count: 1;
    left: 4px;
}

@keyframes animation2 {
    0% {
        left: 34px;
    }

    100% {
        left: 4px;
    }
}


@media (max-width: 1778px) {
    .header {
        padding-right: 10px;
    }
}

.mobile-header {
    display: none;
}

@media (max-width: 1366px) {
    .header__items {
        position: absolute;
        top: 85px;
        left: 20%;
        width: 70%;
    }
}

@media (max-width: 1150px) {
    .header__items {
        left: 13%;
        top: 92px;
        width: 80%;
    }
}

@media(max-width: 1121px) {
    body {
        padding-left: 15px;
    }
}

@media (max-width: 1030px) {
    .header__items {
        left: 2%;
        width: 84%;
    }
}


@media (max-width: 960px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}

.header-open {
    background: none;
    border: none;
    outline: none;
    margin-right: 15px;
    cursor: pointer;
}

.mobile-menu {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 25px 25px;
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
    display: none;

}

.mobile-header__items {
    position: static;
    display: flex;
    gap: 7px 15px;
    flex-wrap: wrap;
    justify-content: center;
    color: white;
}

.mobile-header__items .header__link {
    color: white !important;
}

.menu-close {
    background: none;
    border: none;
    outline: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

@media (max-width: 528px) {

    .mobile-header__items {
        flex-direction: column;
        align-items: center;
    }

    .mobile-header__items .header__link {
        font-size: 14px;
        font-weight: 600;
    }

}

.main {
    display: flex;
}

body {
    background-image: url(../img/donate-main.png);
    background-position: 104% 63px;
    background-repeat: no-repeat;
    background-size: 46%;
}



.main-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-left__container {
    display: flex;
    gap: 0 62px;
}

.main {
    margin-top: 150px;
}

.title {
    font-family: var(--main-font);
    font-size: 52px;
    font-weight: 800;
    color: var(--font-color);
    padding-bottom: 10px;
}

.title-graient {
    background: linear-gradient(90deg, rgba(79, 86, 237, 1) 0%, rgba(15, 24, 236, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label {
    margin-top: 20px;
    color: var(--font-color);
    font-family: var(--main-font);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-left__buttons {
    max-width: 400px;
    width: 100%;
    gap: 20px;
    display: flex;
}

.main-left__btn {
    width: 50%;
    min-height: 65px;

    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    gap: 0 15px;
    align-items: center;
    color: white;
    background: var(--input-bg);
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.main-left__btn .planet-white {
    display: none;
}

.focused {
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
}



.main-left__btn span {
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

.focused span {
    background: none;
    color: white;
    -webkit-text-fill-color: white;
}

.focused .planet-grad {
    display: none;
}

.focused .planet-white {
    display: inline;
}

.main-left__left {
    width: 60%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 20px 0;
}

.calculator {
    width: 40%;
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 10px;
    max-height: 330px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    font-family: var(--main-font);
    margin-top: 20px;
}

.calculator-category {
    margin-top: 30px;
    font-weight: 500;
    font-size: 20px;
}

.calculator h2 {
    text-transform: uppercase;
    padding-bottom: 20px;

}

.calculator-result {
    font-size: 20px;
    font-weight: 700;
}

.main-left__left input {
    width: 100%;
    min-height: 70px;
    padding-left: 21px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: var(--input-bg);
    font-family: var(--main-font);
    font-size: 20px;
    font-weight: 500;
    color: #4D4D4D;
}

.main-left__description {
    color: var(--font-color);
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 14px;
}

.main-left__description a {

    color: #4F56ED;
    font-size: 14px;
    font-weight: 300;
    text-decoration: underline;
}

.main-left__left button {

    margin: 0 auto;
    font-weight: 700;
    font-size: 30px;


}

.btn {
    font-family: var(--main-font);

    filter: drop-shadow(0px 6px 0px #0D129B);
    transition: filter .3s ease;
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 16px 32px;
}
.btn:hover,
.btn:active {
    filter: none;
}
.btn_loading {
    position: relative;
    color: transparent;
}
.btn_loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 3px solid #fff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    animation: btn-loading .5s linear infinite;
}
@keyframes btn-loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-bordered-dark {}

.main-bordered {
    position: absolute;
    width: 100%;
    max-width: 454px;
    left: -100px;
    top: -27px;
    z-index: -1;
}

.products {
    position: relative;
    margin-top: 124px;
}

.products .title {
    text-align: center;
    text-transform: uppercase;
}

.products-bordered-dark {
    position: absolute;
    left: -9%;
    z-index: -1;
    top: -30px;
    width: 100%;
    max-width: 1788px;
}

.product__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--font-color);
    font-family: var(--main-font);
}

.product__item-top {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.product__item-top__list p {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 30px;
    text-align: left;
    margin-left: -20px;
}

.product__item-top__list ul li {
    list-style: disc;
}

.fw900 {
    font-weight: 900;
}

.product__item-top__li {
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
}

.product__item-bottom {
    max-width: 402px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.product__item-bottom button {
    display: flex;
    align-items: center;
    gap: 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.product__item-bottom__price {
    color: #FF0000;
    font-size: 50px;
    font-weight: 700;
    position: relative;
}

.product__item-bottom__price::after {
    content: '';
    display: block;
    height: 4px;
    border-radius: 15px;
    width: 120%;
    background-color: var(--font-color);
    position: absolute;
    top: 46%;
    left: -10%;
}

.products__items {
    display: flex;
    max-width: 1586px;
    width: 100%;
    justify-content: space-between;
    margin-top: 90px;
}

.footer {
    display: flex;

    width: 100%;
    justify-content: center;
    gap: 0 15px;
    color: #808080;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 14px;
    margin-top: 131px;

    padding-bottom: 33px;
    position: relative;
}

.shadow1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.shadow3 {

    position: absolute;
    z-index: -2;
    bottom: 0;
    left: 0;
}

.shadow2 {
    display: block;
    position: absolute;
    z-index: -2;
    bottom: 0;
    right: 0;
}

.shadows-wrapper {
    position: relative;
}

.shadows-wrapper {
    position: relative;
}

.sweetAlertInput {
    width: 100%;
    max-width: 409px;
    height: 70px;
    font-size: 20;
    font-weight: 500;
}















/* Popup styles */



.popup-wrapper {
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    color: var(--font-color);
    font-family: var(--main-font);
    padding: 50px;


}

.popup-wrapper hr {
    border: 0;
    width: 100%;
    background-color: #888888;
    height: 2px;

    margin: 24px 0;

}

.popup-wrapper input {
    border: none;
    min-height: 70px;
    width: 100%;

    border-radius: 15px;
    padding-left: 29px;
    outline: none;
    font-size: 20px;
    font-weight: 500;
}

.popup-info {
    width: 100%;

    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    padding-bottom: 36px;
}

.category {
    font-weight: 700;
}

.popup-info__item {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buttons-two {
    display: flex;
    justify-content: space-between;
    gap: 0 10px;
    width: 100%;

}

.buttons-two button {
    width: 50%;
    border: none;
    background: none;
    border-radius: 10px;
    cursor: pointer;
}

.buttons-two button:first-child {
    background: #FFD700;

    min-height: 70px;
    font-weight: 500;
    font-family: var(--main-font);
    font-size: 20px;
    cursor: pointer;
}

.buttons-two button:nth-child(2) {
    background-color: white;
}

.popup-wrapper__main-btn {
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    font-family: var(--main-font);
    font-size: 20px;
    cursor: pointer;
    width: 100%;
    min-height: 70px;
    margin-top: 12px;
    border: none;
    outline: none;
}


.popup-wrapper__footer {
    color: white;
    font-weight: 300;
    font-size: 14px;
    margin-top: 32px;
}

.popup-wrapper__footer a {
    color: #4F56ED;
    text-decoration: underline;

}

/* Adaptive code */

@media (max-width: 1550px) {
    .wrapper {
        padding-left: 50px;
    }

}

@media (max-width: 1380px) {
    body {
        background-position: 104% 200px;
    }

    .calculator {
        min-width: 240px;
    }

    .main-left__btn {
        min-width: 160px;
    }
}

@media (max-width: 1451px) {
    .product__item-top img {
        height: 220px;

    }

    .product__item-top {
        align-items: flex-start;
    }
}

@media (max-width: 1283px) {
    .wrapper {
        padding-right: 20px;
    }
}

@media (max-width: 1140px) {
    .products__items {
        flex-direction: column;
        gap: 60px 0;
    }

    body {
        padding-left: 0;
    }
}

@media (max-width: 1023px) {
    body {
        background-size: 60%;
    }

    .main-left {
        width: 85%;
    }
}

.donate-mobile-bordered-dark {
    display: none;
}

.main-left__container-mobile {
    display: none;
}

@media (max-width: 655px) {
    body {
        background-image: url(../img/donate-main-mobile.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center 100px;
    }

    .main-bordered {
        display: none !important;

    }

    .donate-mobile-bordered-dark {
        position: absolute;
        width: 70%;
        display: block;
        top: 150px;
    }

    .products .title {
        text-align: left;
    }

    .mobile-menu {
        position: fixed;
    }


    .main-left__container-mobile {
        display: flex;
        width: 100%;
    }

    .main-left__left {
        width: 100%;
    }

    .calculator {
        width: 100%;
        max-width: none;
        padding: 20px 0;
    }
}

@media (max-width: 590px) {
    .shadow1 {
        width: 100%;
    }

    .shadow3 {
        width: 40%;
    }

    .shadows-wrapper .shadow2 {
        width: 100%;
        bottom: auto;
        top: 200px;
    }

    .main-left {
        width: 100%;
    }

    .product__item-top {
        flex-direction: column;
        align-items: center;
    }

    .wrapper {
        padding-left: 20px;
    }
}

.shadow2-mobile {
    display: none;
}

.shadow4-mobile,
.shadow5-mobile,
.shadow6-mobile {
    display: none;
}

.products-bordered-dark-mobile {
    display: none;
}

@media (max-width: 550px) {
    .products-bordered-dark-mobile {
        display: inline;
        left: auto;
        right: -5%;
        width: 110%;
    }

    .products-bordered-dark-pc {
        display: none;
    }

    .shadow2 {
        display: none;
    }

    .shadow2-mobile {
        position: absolute;
        right: 0;
        width: 65%;
        top: 450px;
        display: inline;
        z-index: -2;
    }

    .product__item {
        padding-left: 13px;
    }

    .shadow3 {
        left: auto;
        right: 24px;
        bottom: -30px;
        transform: rotate(270deg);
        z-index: -2;
    }

    .main .title {
        font-size: 42px;
    }

    .shadow4-mobile {
        display: inline;
        position: absolute;
        top: 1000px;
        width: 50%;
        transform: rotate(180deg);
        left: 0;
        z-index: -2;
    }

    .shadow5-mobile {
        display: inline;
        position: absolute;
        top: 1600px;
        width: 50%;
        left: auto;
        right: 0;
        z-index: -2;
    }

    .shadow6-mobile {
        display: inline;
        position: absolute;
        transform: scaleY(-1) rotate(180deg);


        top: 2200px;
        width: 50%;
        left: 0;
        right: auto;
        z-index: -2;
    }
}

@media (max-width: 485px) {
    .products .title {
        font-size: 42px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 565px) {
    .popup-info__item {
        font-size: 16px;
        /* text-align: left; */
    }

    .popup-info__item span {
        text-align: right;
    }

    .category {
        text-align: left !important;
    }
}

@media (max-width: 500px) {
    .popup-wrapper {
        padding: 20px;

    }
}

@media (max-width: 430px) {
    .product__item-bottom {
        gap: 0 15px;
    }

    .popup-info__item {
        font-size: 14px;
        /* text-align: left; */
    }

    .title {
        font-size: 35px !important;
    }

    /* .buttons-two {
        flex-direction: column;
        gap: 10px 0;
        align-items: center;
    }

    .buttons-two button {
        width: 100%;
    } */

    .swal2-html-container {
        margin: 0 !important;
    }
}

@media (max-width: 400px) {

    .title {
        font-size: 28px !important;
    }

    .btn {
        padding: 16px 24px;
    }

    .product__item-bottom__price {
        font-size: 40px;
    }
}

@media (max-width: 360px) {
    .product__item-bottom {
        flex-direction: column;
        gap: 20px 0;
    }

    .main-left__buttons {
        flex-direction: column;
    }

    .main-left__buttons button {
        width: 100%;
    }
}

.popup-error {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    font-family: var(--main-font);
    text-align: left;
    background-color: var(--bg-color);
    color: var(--font-color);
    border-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
}

/* swal2 */
.swal2-popup {
    color: #fff;
    font-family: var(--main-font);
    background-color: #1d1d25;
    padding: min(50px, calc(6.36364px + 3.63636vw));
    border-radius: 20px;
}
.swal2-styled.swal2-confirm {
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
    filter: drop-shadow(0px 6px 0px #0D129B);
}
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background: linear-gradient(93.07deg, #4F56ED -9.61%, #0F18EC 110.24%);
}
.swal2-styled.swal2-confirm:focus {
    box-shadow: none;
}