@keyframes changeBackgroundColor {
    0% {
        background-color: #fff;
    }

    45% {
        background-color: #fff;
    }

    65% {
        background-color: #00145b;
    }

    100% {
        background-color: #00145b;
    }
}

.animation-grid-container {
    height: 100%;
    background-color: #00145b;
    animation: changeBackgroundColor 1.5s;
    animation-iteration-count: 1;
    position: fixed;
    width: 100%;
    z-index: 100001;
    top: 0;
    left: 0px;
    overflow: hidden;
}

@keyframes changeTextColor {
    0% {
        opacity: 0;
        color: #fff;
    }

    25% {
        opacity: 1;
        color: #fff;
    }

    50% {
        color: #fff;
    }

    75% {
        opacity: 1;
        color: #fff;
    }

    100% {
        opacity: 1;
        color: #fff;
    }
}

.animation-grid-container .img-container {
    background-color: #fff;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.animation-grid-container .img-container > svg {
    width: 220px;
    height: auto;
}

.animation-grid-container h1 {
    font-weight: 500;
    padding-top: 5px;
    bottom: 30px;
}

.animation-grid-container h1,
.animation-grid-container p {
    color: #fff;
    animation: changeTextColor 1.5s ease 0.4s 1 normal forwards;
    font-family: 'Montserrat' !important;
    opacity: 0;
    position: absolute;
    width: 100%;
    letter-spacing: 0.4px;
}

.animation-grid-container p {
    font-size: 12px;
    bottom: 0px;
}

.background-white {
    background-color: #fff;
}

.cbn-loading-container {
    max-width: 230px;
    width: 100%;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 85px;
}

.firsttime-loading {
    overflow: hidden;
}

.Social-report-popup-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 999999;
    background-color: #fff;
}

.Social-report-popup-header {
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    height: auto;
    padding: 10px;
    justify-content: center;
}

.Social-report-popup-header > .club-logo {
    width: 50px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.Social-report-popup-body {
    width: 100%;
    height: calc(100vh - 70px);
    max-width: 650px;
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: auto;
}

.Social-report_popup_close {
    position: fixed;
    right: 25px;
    top: 20px;
    cursor: pointer;
}

.Social-report_popup_close > i {
    font-size: 30px;
    color: #000;
}

.Social-report-popup-form {
    padding: 45px 35px 40px;
    background-color: #012064;
    border-radius: 4px;
    width: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.Social-report-popup-form > label {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.Social-report-popup-form > .social-form-fields {
    margin-bottom: 25px;
    height: 48px;
    outline: none;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 13px;
    width: 100%;
    padding: 10px 10px;
}

.Social-report-popup-form > .social-form-fields#textArea {
    min-height: 130px;
}

.submit-btn-report {
    padding: 14px 8px;
    border: 2px solid #ffffff;
    background-color: #fff;
    color: #012064;
    letter-spacing: 1px;
    width: 160px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    margin: 20px auto 0px;
    display: block;
}

.submit-btn-report:hover {
    background-color: #e9e9e9;
    border: 1px solid #ffffff;
}

.Social-report-popup-form > .social-form-fields::placeholder {
    color: #000;
}

.main-heading-report {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.sub-heading-report {
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 25px;
}

.cb_splash_screen_container {
    height: 100%;
    background-color: #03014b;
    position: fixed;
    width: 100%;
    z-index: 100001;
    top: 0;
    left: 0px;
    overflow: hidden;
}

.cb_splash_screen_text_wrap {
    position: relative;
    z-index: 9;
    opacity: 0;
    animation: splash_text 2s ease 0.8s 1 normal forwards;
}

@keyframes splash_text {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.cb_splash_screen_text_wrap .s442_logo_icon {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 100%;
    margin: auto;
    padding: 8px;
}

.cb_splash_screen_text_wrap .s442_logo_icon img {
    width: 100%;
    height: 100%;
}

.cb_splash_screen_text_wrap .cb_logo_text_wrap {
    margin: 35px 0;
    font-weight: 700;
    font-size: 36px;
}

.cb_splash_screen_text_wrap .logo_desc_text {
    margin: 25px 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cb_loading_bar_wrap {
    background: #03014b;
    display: block;
    height: 16px;
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.cb_loading_bar_white {
    position: absolute;
    height: 16px;
    top: 0px;
    background-color: #fff;
    width: 100%;
    border-radius: 20px;
    animation: progressBar 4s ease-in-out;
}

.cb_splash_screen_text_wrap .cb_logo_text_wrap span {
    background: #fff;
    color: #001d71;
    padding: 6px 20px;
    margin-left: 10px;
}

.cb_splash_screen_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cb_splash_screen_text_wrap * {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat' !important;
}

.loading_bar_desc {
    margin-top: 10px;
}

.loading_bar_desc .loading_text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.cb_splash_screen_bg_wrap {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.splash_circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse_landing 3s infinite;
    top: 50%;
    left: 50%;
}

.splash_circle3 {
    width: 800px;
    height: 800px;
    background-color: #001348;
    z-index: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.splash_circle2 {
    width: 660px;
    height: 660px;
    background-color: #00175a;
    z-index: 2;
    box-shadow: 3.25px 4.3px 16px 0px rgba(0, 0, 0, 0.25);
}

.splash_circle1 {
    width: 500px;
    height: 500px;
    background-color: #001d71;
    z-index: 3;
    box-shadow: 3.3px 4.3px 16px 0px rgba(0, 0, 0, 0.25);
}

@keyframes progressBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse_landing {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }

    /* 60% {
            transform: translate(-50%, -50%) scale(1.15);
        } */
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 992px) {
    .Social-report_popup_close > i {
        font-size: 24px;
    }

    .Social-report-popup-header > .club-logo {
        width: 35px;
    }

    .Social-report_popup_close {
        right: 10px;
        top: 14px;
    }

    .Social-report-popup-form > label {
        font-size: 12px;
    }

    .Social-report-popup-form > .social-form-fields {
        margin-bottom: 15px;
        height: 40px;
        font-size: 12px;
    }

    .Social-report-popup-form {
        padding: 35px 25px 25px;
    }

    .main-heading-report {
        font-size: 14px;
    }

    .sub-heading-report {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .Social-report-popup-body {
        max-width: 100%;
        margin: 85px 20px 0px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 500px) {
    .animation-grid-container .img-container > svg {
        width: 150px;
    }

    .animation-grid-container h1 {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .animation-grid-container p {
        font-size: 10px;
        letter-spacing: 0px;
        bottom: 5px;
    }

    .animation-grid-container h1,
    .animation-grid-container p {
        margin-top: 15px;
    }

    .cbn-loading-container {
        width: 100%;
        padding-bottom: 75px;
    }

    .animation-grid-container .img-container {
        width: max-content;
    }

    .Social-report-popup-body {
        align-items: center;
    }

    .submit-btn-report {
        padding: 12px 8px;
        font-size: 11px;
    }

    .cb_splash_screen_text_wrap .s442_logo_icon {
        width: 70px;
        height: 70px;
        padding: 4px;
    }

    .cb_splash_screen_text_wrap .cb_logo_text_wrap {
        margin: 20px 0;
        font-size: 26px;
    }

    .cb_splash_screen_text_wrap .cb_logo_text_wrap span {
        padding: 4px 14px;
        margin-left: 6px;
    }

    .cb_splash_screen_text_wrap .logo_desc_text {
        margin: 20px 0;
        font-size: 11px;
    }

    .cb_splash_loading_bar {
        margin-top: 15px;
    }

    .cb_loading_bar_wrap {
        height: 8px;
    }

    .cb_loading_bar_white {
        height: 8px;
    }

    .loading_bar_desc {
        margin-top: 7px;
    }

    .loading_bar_desc .loading_text {
        font-size: 11px;
    }

    .cb_splash_screen_bg_wrap {
        width: 480px;
        height: 480px;
    }

    .splash_circle3 {
        width: 480px;
        height: 480px;
    }

    .splash_circle2 {
        width: 400px;
        height: 400px;
    }

    .splash_circle1 {
        width: 320px;
        height: 320px;
    }
}
