
.popupbg {

    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;

    background-color: rgba(0, 0, 0, 0.5);

    z-index: 1;

    display: none;

}

.submit-popupdiv {

    width: 300px;
    height: 400px;
    background-color: #fff;

    position: fixed;
    top: calc( 50% - 200px );
    left: calc( 50% - 150px );
    transition: top 0.3s, left 0.3s;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;

    z-index: 2;

    opacity: 0;
    transition: opacity 0.3s;
    display: none;

}

.submit-title {

    width: calc( 100% - 20px );
    height: 40px;
    margin: 5px 10px;
    /* background-color: aqua; */

    display: flex;
    justify-content: left;
    align-items: center;

    font-size: 20px;
    font-weight: bold;

}

.submit-content {

    width: calc( 100% - 20px );
    height: 300px;
    margin: 0 10px;
    /* background-color: tomato; */

    overflow-y: auto;

}

.submit-contentdiv {

    width: 100%;
    height: 70px;
    margin: 5px 0;
    /* background-color: blue; */

}

.submit-contentdiv-title {

    width: 100%;
    height: 30px;
    /* background-color: green; */

    display: flex;
    justify-content: left;
    align-items: center;

    font-weight: 700;

}

.submit-contentdiv-input {

    width: 100%;
    height: 40px;
    /* background-color: yellow; */

}

.submit-contentdiv-input input {

    width: calc( 100% - 9px );
    height: calc( 100% - 8px );
    border: 2px solid #ccc;
    outline: none;
    border-radius: 5px;
    padding: 0 0 0 5px;

}

.submit-contentdiv-input input:focus {

    transition: border-color 0.3s;
    border-color: #246beb;

}

.submit-button {
    
    width: calc( 100% - 10px );
    height: 40px;
    margin: 5px;
    /* background-color: aqua; */

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.submit-button1 {

    width: calc( 50% - 5px );
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;

}

.submit-button1:hover {

    background-color: #e5e5e5;

}

.submit-button2 {

    width: calc( 50% - 5px );
    height: 100%;
    background-color: #246beb;
    border-radius: 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;

}

.submit-button2:hover {

    background-color: #1f5baf;

}

.submit-complete {

    /* width: calc( 100% - 20px ); */
    width: 100%;
    height: 280px;
    /* margin: 0 10px; */

    /* background-color: aqua; */

    display: flex;
    justify-content: center;
    align-items: center;

}

.submit-complete-content {

    width: 140px;
    height: 170px;
    background-color: white;
    display: flex;
    flex-direction: column;

}

.submit-complete-image {

    width: 100%;
    height: 140px;
    /* background-color: tomato; */

    display: flex;
    justify-content: center;
    align-items: center;

}

.submit-complete-title {

    width: 100%;
    height: 30px;
    /* background-color: yellow; */

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    /* font-weight: 700; */
    font-weight: regular 18px;
}

.circle {

    width: 90%;
    height: 90%;
    background-color: #246beb;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

  }

.circle::after {
    
    content: '';
    width: 40px;
    height: 20px;
    border: solid white;
    border-width: 0 0 6px 6px;
    transform: rotate(-45deg);
    position: absolute;

}

.circle1 {

    width: 90%;
    height: 90%;
    background-color: #e71825;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

  }

.circle1::before, .circle1::after {

    content: '';
    position: absolute;
    width: 60px;
    height: 6px;
    background-color: white;

}

.circle1::before {

    transform: rotate(45deg); /* 대각선 방향 */

}

.circle1::after {

    transform: rotate(-45deg); /* 반대 방향 대각선 */

}

.submit-button3 {

    width: calc( 50% - 5px );
    height: 100%;
    background-color: #246beb;
    border-radius: 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;

}

.submit-complete-image img {

    width: 80%;
    height: 80%;

}

.submit-contentdiv-detail {
    width: 100%;
    min-height: 30px;
    background-color: #e9f0ff;
    border-radius: 5px;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.submit-contentdiv-detailtext {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: left;
    align-items: center;
    /* color: #8e8e8e; */
    color: 	#1a1a1a;
}