@font-face {
    font-family: Gotham SSm;
    /* src: url('/fonts/Gotham-SSm/GothamSSm-Black.otf'); */
    src: url('../fonts/Gotham-SSm/GothamSSm-Light.otf');
    /* src: url('/fonts/Gotham-SSm/GothamSSm-BlackItalic.otf');
    src: url('/fonts/Gotham-SSm/GothamSSm-Bold.otf');
    src: url('/fonts/Gotham-SSm/GothamSSm-BoldItalic.otf'); 
    src: url('fonts/Gotham-SSm/GothamSSm-Book.otf'); */
    /* src: url('/fonts/Gotham-SSm/GothamSSm-BookItalic.otf');
    src: url('/fonts/Gotham-SSm/GothamSSm-LightItalic.otf');
    src: url('/fonts/Gotham-SSm/GothamSSm-Medium.otf');
    src: url('/fonts/Gotham-SSm/GothamSSm-MediumItalic.otf'); */
}
.LO_message {
    --width: 1080px;
    --height: 1920px;
    position: relative;
    width: var(--width);
    height: var(--height);
    top: calc(var(--height)*0);
    left: calc(var(--width)*-1);
    /* background-color: #000000FF; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: background-color 0.5s;
    z-index: -1;
}

.popup {
    position: absolute;
    width: 940px;
    height: 719px;
    left: 70px;
    top: 850px;
    opacity: 0;
    transition: opacity 0.2s linear, top 0.2s linear;
}

.tick_mark_container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 238px;
    height: 238px;
    left: 50%; transform: translate(-50%, 0%);
    top: 0px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    opacity: 1;
}

.tick_mark_container .line1 {
    position: absolute;
    width: 73.32px;
    /* height: 0px; */
    left: 32%;
    top: 63%;
    border-top: 12.5px solid #FFFFFF;
    border-bottom: 12.5px solid #FFFFFF;
    box-sizing: content-box;
    border-radius: 12.5px;
    background-color: #ffffff;
    transform: translate(-50%, -50%) rotate(39.89deg);
}

.tick_mark_container .line2 {
    position: absolute;
    width: 144.73px;
    /* height: 0px; */
    left: 57.6%;
    top: 52.1%;
    transform: translate(-50%, -50%);
    border-top: 12.5px solid #FFFFFF;
    border-bottom: 12.5px solid #FFFFFF;
    border-radius: 12.5px;
    background-color: #ffffff;
    transform: translate(-50%, -50%) rotate(-48.59deg);
}

.tick_mark_container .ellipse1 {
    border-radius: 50%;
    position: absolute;
    width: 238px;
    height: 238px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #10DBA4 0%, #388BFC 153.15%);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25), inset 0px -10px 10px rgba(0, 0, 0, 0.25), inset 0px 10px 10px rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.tick_mark_container .ellipse2 {
    border-radius: 50%;
    position: absolute;
    width: 238px;
    height: 238px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #FFFFFF;
    box-shadow: inset 0px -2px 2px rgba(0, 0, 0, 0.25), inset 0px 2px 2px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    display: none;
}

.text_container {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 940px;
    height: 600px;
    left: 0px;
    top: 120px;
    background: #FFFFFF;
    border-radius: 24px;
}

.tick_mark_container svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.38);
    z-index: 0;
}

.tick_mark_container svg path{
    position: absolute;
    fill: none;
    stroke: #b3ff10;
    stroke-width: 6;
    box-shadow: inset 0px -2px 2px rgba(0, 0, 0, 0.25), inset 0px 2px 2px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    
}

.LO_message .text_container p {
    position: relative;
    top: 20%;
    width: 80%;
    font-family: Gotham SSm;
    font-style: normal;
    font-weight: 325;
    font-size: 36px;
    line-height: 60px;
    /* or 43px */
    text-align: center;
    /* text-transform: capitalize; */
}

.close_button{
    position: relative;
    left: 50%; transform: translate(-50%, 0%);
    top: 552px;
    width: 468px;
    height: 128.64px;
    border: none;
    border-radius: 200px;
    background: linear-gradient(90deg, #10dca3, #3988fa);
    color: white;
    font-family: Gotham SSm;
    font-weight: 350;
    font-size: 42px;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}