@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
    font-family: "Jost";
    position: relative;
    overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    line-height: normal;
}

.steps {
    background-size: auto 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-color: #dcdadb;
    display: grid;
    place-items: center;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #dcdadb;
}

.step-1 {
    background-image: url(../images/backgrounds/step-1-bg.png);
}

.steps-inner {
    min-height: 300px;
    border-radius: 9px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    z-index: 5;
    position: relative;
    margin: 50px 0;
}

.wrapper {
    padding: 70px 100px;
}

.step-heading h2 {
    font-size: 35px;
    color: rgb(0, 10, 56);
    font-weight: bold;
    text-transform: uppercase;
}

.step-heading p {
    font-size: 22px;
    color: rgb(0, 10, 56);
}

.step-bar .step-counter {
    font-size: 20px;
    color: rgb(0, 10, 56);
    font-weight: bold;
    text-align: right;
    display: block;
}

.step-bar-inner {
    border-radius: 9px;
    background-color: rgb(233, 233, 233);
    width: 100%;
    height: 16px;
    margin-top: 0.5rem;
}

.step-bar-inner .step-bar-move {
    width: 30%;
    border-radius: inherit;
    height: inherit;
    background-color: rgb(81, 56, 238);
    /* background-image: -moz-linear-gradient( -3deg, rgb(54,209,220) 0%, rgb(91,134,229) 100%);
    background-image: -webkit-linear-gradient( -3deg, rgb(54,209,220) 0%, rgb(91,134,229) 100%);
    background-image: -ms-linear-gradient( -3deg, rgb(54,209,220) 0%, rgb(91,134,229) 100%);  */
}

.form-heading {
    font-size: 28px;
    color: rgb(0, 10, 56);
    font-weight: bold;
    margin-top: 1.5rem;
}

.form-inner {
    margin-top: 1rem;
}

.form-input {
    display: block;
    display: flex;
    align-items: center;
    border-radius: 30px;
    width: 100%;
    height: 66px;
    font-size: 19px;
    color: rgb(0, 10, 56);
    font-weight: 500;
    transition: 0.5s all ease;
    margin-top: 15px;
    margin-bottom: 15px;
}

.active-input {
    background-color: rgb(233, 233, 233);
    transition: 0.5s all ease;
}

.active-input input {
    margin-right: 40px !important;
    transition: 0.5s all ease;
}

.form-input input {
    -webkit-appearance: none;
    border: solid 2px rgb(233, 233, 233);
    border-radius: 50%;
    width: 33px;
    height: 33px;
    cursor: pointer;
    margin-right: 20px;
    transition: 0.5s all ease;
}

.form-input input:checked {
    background-color: rgb(81, 56, 238);
    position: relative;
}

.form-input input:checked::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "\f00c";
    line-height: 30px;
    text-align: center;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.form-buttons {
    text-align: center;
    width: 100%;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
}

.form-buttons button {
    border-radius: 34px;
    width: 46%;
    height: 68px;
    border: none;
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s all ease;
}

.form-buttons button i {
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    transition: 0.5s all ease;
}

.form-buttons .next:hover i,
.apply:hover i {
    transform: translateX(10px);
}

.form-buttons .prev:hover i {
    transform: translateX(-10px);
}

.form-buttons .prev {
    background-color: rgb(44, 42, 42);
}

.form-buttons .next,
.apply {
    background-color: rgb(81, 56, 238);
}

.timer {
    position: absolute;
    bottom: 50px;
    left: 50px;
    border-radius: 46px;
    background-color: #e9e9e9;
    box-shadow: 0px 9px 57px 0px rgba(19, 19, 19, 0.08);
    width: 270px;
    height: 90px;
    padding: 10px 15px;
    display: flex;
}

.countdown {
    border-radius: 39px;
    background-color: rgb(255, 255, 255);
    width: 120px;
    height: 100%;
    text-align: center;
    display: grid;
    place-content: center;
}

.countdown span {
    display: block;
}

.countdown .time {
    font-size: 28px;
    color: rgb(0, 10, 56);
    font-weight: bold;
    line-height: 1;
}

.countdown .time-ex {
    font-size: 12px;
    color: rgb(89, 89, 89);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}

.timer-heading {
    font-size: 18px;
    color: rgb(44, 42, 42);
    font-weight: bold;
    line-height: 1;
    display: grid;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
}

.step-2 {
    background-image: url(../images/backgrounds/step-2-bg.png);
}

.step-3 {
    background-image: url(../images/backgrounds/step-3-bg.png);
}

.step-4 {
    background-image: url(../images/backgrounds/step-4-bg.png);
}

/*thankyou-page*/

.thankyou-page {
    background-color: rgb(243, 247, 254);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.thankyou-page-inner {
    background: rgb(255, 255, 255);
    border-radius: 90px;
    width: 100%;
    position: relative;
    top: 30%;
    /*transform: translateY(50%);*/
    text-align: center;
}

.tick {
    position: relative;
}

.done-tick {
    width: 120px;
    height: 120px;
    border: solid 1px transparent;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-left-color: rgb(34, 208, 136);
    animation: rotate-circle 0.5s linear forwards;
    animation-delay: 0.5s;
    border-radius: 50%;
    background-color: transparent;
}

.tick i {
    font-weight: 900;
    font-size: 50px;
    color: rgb(34, 208, 136);
    position: absolute;
    animation: tick-icon 0.8s linear forwards;
    animation-delay: 0.5s;
    top: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation-delay: 0.5s;
}

.thankyou-page-inner h2 {
    font-size: 45px;
    color: rgb(5, 17, 51);
    margin-top: 20px;
    font-weight: bold;
}

.thankyou-page-inner p {
    font-size: 16px;
    color: rgb(170, 170, 170);
    margin-top: 20px;
}

.thankyou-page-inner .wrapper {
    padding: 80px 290px;
}

.next-prev-btn .back {
    border: 0;
    border-radius: 50px;
    background-color: rgb(81, 56, 238);
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    margin-top: 15px;
    height: 67px;
}

#sub img {
    width: 60px;
}

.highlight {
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;
}

#error {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

/* sign up form */
.form-section {
    position: relative;
}

.form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/body-bg-left.png);
    background-repeat: no-repeat;
    width: 350px;
    height: 100%;
    z-index: 0;
}

.form-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/body-bg-right.png);
    background-repeat: no-repeat;
    width: 315px;
    height: 100%;
    z-index: 0;
}

.form-wrapper {
    padding: 60px 0 0 0;
    position: relative;
    z-index: 1;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}

/* heading */
.signup-heading h2 {
    font-size: 42px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    text-transform: uppercase;
}

.signup-heading p {
    font-size: 18px;
    font-family: "Roboto";
    color: rgb(12, 16, 71);
}

/* google button */
.google-signup {
    width: 100%;
    height: 60px;
    margin-top: 30px;
}

.google-signup button {
    border: solid 2px rgb(237, 237, 237);
    border-radius: 32px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    width: inherit;
    height: inherit;
    font-weight: bold;
}

.google-signup button img {
    width: 22px;
    margin-right: 10px;
    transition: 0.5s ease;
}

.google-signup:hover button img {
    transform: rotate(360deg);
}

.email-signup {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    position: relative;
}

.email-signup span {
    font-size: 16px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    z-index: 1;
    position: relative;
    width: max-content;
    background-color: rgb(255, 255, 255);
    padding: 0 20px;
}

.email-signup::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 50%;
    height: 1px;
    z-index: 0;
    background-color: rgb(235, 235, 235);
}

/* form */
.signup-form .signin-form {
    margin-top: 30px;
}

/* form fields */
.form-field {
    margin-bottom: 25px;
    width: 100%;
}

.form-field label {
    font-size: 15px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 30px;
}

.form-field label::after {
    content: "*";
    font-size: inherit;
}

.form-field input {
    border: solid 2px rgb(237, 237, 237);
    border-radius: 36px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    height: 70px;
    width: inherit;
    font-size: 15px;
    font-family: "Roboto";
    color: rgb(137, 137, 137);
    transition: 0.5s ease;
    padding-left: 30px;
}

.form-field input:focus {
    outline: none;
    border: solid 2px rgb(81, 56, 238);
}

.agree-notif {
    margin-top: 10px;
}

.agree-notif label {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

/* checkbox style */
.agree-notif input[type="checkbox"] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: solid 1px rgb(237, 237, 237);
    background-color: transparent;
    cursor: pointer;
    margin-right: 10px;
}

.agree-notif input[type="checkbox"]:checked {
    background-color: rgb(81, 56, 238);
    text-align: center;
    border-color: rgb(81, 56, 238);
}

.agree-notif input[type="checkbox"]:checked::after {
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    content: "\f00c";
    color: rgb(255, 255, 255);
}

.agree-notif label span {
    font-size: 15px;
    color: rgb(12, 16, 71);
    font-weight: bold;
}

.agree-notif label span a {
    color: rgb(81, 56, 238) !important;
}

/* submit button */
.signup-submit {
    width: 100%;
    height: 60px;
    margin-top: 35px;
}

.signup-submit button {
    background-color: rgb(81, 56, 238);
    width: inherit;
    height: inherit;
    border-radius: 32px;
    /*border: solid 2px transparent;*/
    border: none;
    position: relative;
    font-size: 16px;
    color: rgb(249, 249, 250);
    font-weight: bold;
    overflow: hidden;
}

.signup-submit button:hover {
    background-color: rgb(69, 41, 242);
}

.signup-submit button:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(90deg, transparent, #fff, transparent);
    transition: 0.5s ease;
}

.signup-submit button:hover:before {
    left: 100%;
}

.login-notif {
    font-size: 16px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    margin-top: 20px;
    margin-left: 30px;
}

.login-notif span {
    color: rgb(81, 56, 238);
    text-decoration: underline;
    cursor: pointer;
}

.copyright {
    font-size: 15px;
    color: rgb(12, 16, 71);
    font-weight: bold;
    margin-top: 50px;
    margin-left: 30px;
}

/* hide-show signup/login */
.signup {
    display: block;
}

.login {
    display: block;
}

.show-login .signup {
    display: none;
}

.show-login .login {
    display: block;
}

/* slider */
.slider {
    position: relative;
    min-height: 100vh;
    background-image: url(../images/slider-bg.jpg);
    background-size: cover;
}

.slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(360deg,
            rgb(34, 34, 55) 6%,
            rgba(34, 34, 55, 0.77) 27%,
            rgba(34, 34, 55, 0) 100%);
    z-index: 0;
}

.slider-inner {
    z-index: 1;
    position: absolute;
    bottom: 120px;
    width: 100%;
}

.slide-wrap {
    width: 100;
    margin: 0 auto;
}

/* slider caption */
.slider-inner .carousel-caption {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-caption {
    position: static;
}

.slider-inner .carousel-caption h1 {
    font-size: 65px;
    width: 50%;
    margin: 0 auto;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.slider-inner .carousel-caption p {
    font-size: 20px;
    font-family: "Roboto";
    color: rgb(255, 255, 255);
    width: 40%;
    margin: 0 auto;
    margin-top: 15px;
}

/*slider carousel-indicators*/
.carousel-indicators {
    margin: 0;
    position: static;
}

.carousel-indicators [data-bs-target] {
    border-radius: 4px;
    background-color: rgb(140, 124, 244);
    width: 13px;
    height: 12px;
    margin-left: 4px;
    margin-right: 4px;
    transition: 0.5s all ease-in-out;
    border: 0;
}

.carousel-indicators .active {
    background-color: rgb(255, 255, 255);
    width: 30px;
}

.invalid-feedback {
    display: block;
    padding-left: 30px;
}

.coming-soon {
    background-image: url(../images/backgrounds/bg.jpg);
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    z-index: 10;
}

.coming-soon::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(212, 241, 249);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 10;
}

.coming-soon-overlay {
    background-color: rgba(33, 33, 33, 0.5);
    min-height: 100vh;
    width: 100%;
}

.wrapper {
    width: 92%;
    margin: 0 auto;
    padding: 50px 0;
}

/* nav */

.coming-soon_nav {
    display: flex;
    justify-content: space-between;
    min-height: 50px;
}

.logo a {
    font-size: 28px;
    font-family: "GlacialIndifferenceBold";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1;
}

.logo i {
    color: rgb(255, 255, 255);
    font-size: 28px;
    margin-right: 5px;
}

.nav-end {
    display: flex;
    height: auto;
}

.nav_custom {
    margin-left: 35px;
    display: flex;
}

.nav-ham {
    width: 28px;
    height: auto;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    margin-right: 35px;
}

.nav-ham span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    margin-bottom: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.nav-ham.open span:nth-child(1) {
    margin-top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav-ham.open span:nth-child(2) {
    opacity: 0;
    margin-left: -60px;
    margin-top: 0;
}

.nav-ham.open span:nth-child(3) {
    margin-top: -18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.shop-icon {
    position: relative;
}

.shop-icon img {
    width: 100%;
}

.cart-count {
    border-radius: 50%;
    border: solid 2px rgb(255, 255, 255);
    background-color: rgb(238, 51, 100);
    width: 21px;
    height: 21px;
    font-size: 8px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-align: center;
    line-height: 19px;
    position: absolute;
    right: -9px;
    top: -5px;
}

.navham-content {
    width: 30%;
    height: 100%;
    position: absolute;
    z-index: 20;
    right: 0;
    background-color: rgb(33, 33, 33);
    top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.5s linear;
    color: rgb(255, 255, 255);
}

.navham-content .inner {
    width: 90%;
    padding: 50px;
}

.navham-content .nav_icons {
    display: none;
}

.navham-content.active {
    opacity: 1;
    transform: translateX(0);
}

.navham-content .nav-ham {
    margin-left: auto;
    margin-top: 35px;
}

/*Temporary Home*/
.coming-soon-inner {
    display: grid;
    place-content: center;
    min-height: 800px;
    width: 100%;
    text-align: center;
}

.coming-soon-title {
    border-bottom: solid 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 70px;
}

.coming-soon-title h1 {
    font-size: 84px;
    font-family: "Monoton";
    color: rgb(255, 255, 255);
    line-height: 1;
}

#countdown {
    font-size: 60px;
    font-family: "Monoton";
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    width: auto;
    display: flex;
    min-height: 160px;
    justify-content: space-evenly;
    text-align: center;
    margin-bottom: 80px;

    align-items: center;
    border: solid 3px rgba(255, 255, 255, 0.5);
    border-radius: 80px;
    overflow: hidden;
}

#countdown .timer {
    width: 25%;
    height: auto;
    line-height: normal;
    border-left: solid 2px rgba(255, 255, 255, 0.25);
}

#countdown span {
    display: block;
    word-break: break-all;
    font-size: 15px;
    font-weight: bold;
    font-family: "GlacialIndifferenceBold";
    line-height: normal;
}

.social-icons {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.social-icon-single {
    width: 12.5%;
    height: 100px;
    background-color: rgb(33, 33, 33);
    cursor: pointer;
    overflow: hidden;
}

.icon-single-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 20px;
    align-items: center;
}

.icon-single-inner .social-text {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.icon-single-inner .icon {
    font-size: 75px;
    color: rgba(255, 255, 255, 0.1);
    transition: 0.5s all;
}

.icon-single-inner:hover .icon {
    transform: rotate(360deg) scale(2);
}

.social-icon-single.facebook {
    background-color: rgb(57, 87, 155);
}

.social-icon-single.twitter {
    background-color: rgb(80, 171, 242);
}

.social-icon-single.pinterest {
    background-color: rgb(255, 64, 0);
}

.social-icon-single.instagram {
    background-color: rgb(0, 122, 184);
}

.social-icon-single.dribble {
    background-color: rgb(236, 73, 137);
}

.social-icon-single.devianart {
    background-color: rgb(140, 180, 45);
}

.social-icon-single.google {
    background-color: rgb(228, 44, 38);
}

.social-icon-single.behance {
    background-color: rgb(2, 185, 215);
}

.identity-type {
    border: solid 2px rgb(237, 237, 237);
    border-radius: 36px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    height: 70px;
    width: inherit;
    font-size: 15px;
    font-family: "Roboto";
    color: rgb(137, 137, 137);
    transition: 0.5s ease;
    padding-left: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='rgb(137, 137, 137)' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 30px center;
    background-size: 10px;
}

.identity-type option {
    background-color: rgb(255, 255, 255);
    color: rgb(137, 137, 137);
    font-family: "Roboto";
    font-size: 15px;
}

.select2-container--bootstrap5 .select2-selection--single {
    border: solid 2px rgb(237, 237, 237);
    border-radius: 36px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 70px 0px rgba(0, 0, 0, 0.07);
    height: 70px;
    width: inherit;
    font-size: 15px;
    font-family: "Roboto";
    color: rgb(137, 137, 137);
    transition: 0.5s ease;
    padding-left: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='rgb(137, 137, 137)' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 30px center;
    background-size: 10px;
}

.form-field label.no-asterisk::after {
    content: "";
}

.modal .form-control {
    height: 50px;
}

.modal-submit {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
}

.modal-submit button {
    background-color: rgb(81, 56, 238);
    width: inherit;
    height: inherit;
    border-radius: 32px;
    border: none;
    position: relative;
    font-size: 16px;
    color: rgb(249, 249, 250);
    font-weight: bold;
    overflow: hidden;
}

.modal-submit .btn-grey {
    background-color: grey;
}

button.iti__selected-country {
    border-radius: 36px 0 0 36px;
}

.times {
    position: relative;
}

.done-times {
    width: 120px;
    height: 120px;
    border: solid 1px transparent;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-left-color: rgb(255, 0, 0);
    animation: rotate-error-circle 0.5s linear forwards;
    animation-delay: 0.5s;
    border-radius: 50%;
    background-color: transparent;
}

.times i {
    font-weight: 900;
    font-size: 50px;
    color: rgb(255, 0, 0);
    position: absolute;
    animation: tick-icon 0.8s linear forwards;
    animation-delay: 0.5s;
    top: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation-delay: 0.5s;
}

.swal-custom-font {
    font-size: 18px;
}

.swal-custom-font .swal2-title {
    font-size: 24px;
}

.swal-custom-font .swal2-html-container {
    font-size: 18px;
}