body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3
}

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

.tc-redirect-page {
    background-color: #1a3744;
    overflow: hidden
}

.tc-redirect-page .tc-redirect-circle {
    width: 10px;
    height: 10px;
    background-color: #efefef;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    z-index: 1
}

.tc-redirect-page .tc-circle-animations {
    width: 95vh;
    height: 95vh;
    transition: all 1s
}

.tc-redirect-page .tc-circle-animations-second {
    width: 220vh;
    height: 220vh;
    transition: all 20s linear
}

.tc-redirect-page .tc-redirect-info {
    width: 95vh;
    height: 50vh;
    max-width: 100%;
    padding: 20px 35px 0 35px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 50vh;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    opacity: 0;
    transition: all .5s
}

.tc-redirect-page .tc-info-animations {
    opacity: 1
}

.tc-redirect-page .tc-info {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center
}

.tc-redirect-page .tc-logo-site,
.tc-redirect-page .tc-logo-company {
    max-width: 150px
}

@media (max-width: 767px) {
    .tc-redirect-page .tc-info {
        margin-bottom: 0;
    }

    .tc-redirect-page .tc-logo-company,
    .tc-redirect-page .tc-logo-site {
        max-width: 120px;
    }
}

.tc-redirect-page .tc-loader {
    margin: 0 35px;
    display: flex
}

.tc-redirect-page .tc-loader-item {
    width: 12px;
    height: 12px;
    margin: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #b6bec1;
    -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
    animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.tc-redirect-page .tc-loader>div {
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both
}

.tc-redirect-page .tc-loader .bounce1 {
    background-color: #173241;
    -webkit-animation-delay: -0.48s;
    animation-delay: -0.48s
}

.tc-redirect-page .tc-loader .bounce2 {
    background-color: #495e69;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s
}

.tc-redirect-page .tc-loader .bounce3 {
    background-color: #7e8e95;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.tc-redirect-page .tc-info-paragraph {
    font-size: 20px;
    color: #4b4b4b
}

@media screen and (orientation: portrait) and (max-width:767px) {
    .tc-redirect-page .tc-redirect-info {
        height: 95vh;
        bottom: 0;
        justify-content: center
    }

    .tc-redirect-page .tc-info {
        flex-direction: column
    }

    .tc-redirect-page .tc-loader {
        margin: 25px 0;
        flex-direction: column
    }
}

@media screen and (orientation: landscape) and (max-height:600px) {
    .tc-redirect-page .tc-redirect-info {
        width: 95%;
        height: 95%;
        padding: 20px;
        bottom: 0;
        justify-content: center
    }

    .tc-redirect-page .tc-circle-animations {
        width: 95vw;
        height: 95vw;
        transition: all 1s
    }

    .tc-redirect-page .tc-circle-animations-second {
        width: 120vw;
        height: 120vw;
        transition: all 10s
    }
}

.rtl .tc-info-paragraph {
    direction: rtl;
}

.rtl .tc-info-paragraph .tc-bold {
    direction: ltr;
    display: inline-block;
    text-align: left;
}

.custom-button {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    background-color: #fc904d;
    border-radius: 0.5rem;
    text-align: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    animation: fadeIn 0.8s ease-in;
    text-decoration: none;
    /* Add fade-in animation */
}

@media (min-width: 768px) {
    .custom-button {
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
        font-size: 1rem;
    }
}

.custom-button:hover {
    background-color: #000000;
}

/* Define the fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}