.cus-modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}
  
  
.cus-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 55%;
    height: 320px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
  
  
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}
  
@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}
  
  
.cus-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    transition: .2s;
}
  
.cus-close:hover,
.cus-close:focus {
    transform: scale(1.4);
    text-decoration: none;
    cursor: pointer;
}
  
.cus-modal-header {
    padding: 2px 16px;
    background-color: #0e0e0e;
    color: white;
    height: 70px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.80);
}
  
.cus-modal-body {
    padding: 16px 16px;
    height: 160px;
    border-bottom:1px solid #c2bcbc;
    font-size: 22px;
    display: flex;
    justify-content: center;
    font-family: arial;
    font-weight: 600;
    letter-spacing: 1px;
}
  
.cus-modal-footer {
    padding: 2px 16px;
    color: white;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.modal-bth {
    width: 190px;
    height: 55px;
    background-color: #0e0e0e;
    color: white;
    font-family: arial;
    font-size: 20px;
    font-weight: 600;
    transition: .7s;
}

.modal-bth-ok {
    width: 190px;
    height: 55px;
    background-color: white;
    color: #0e0e0e;
    border: 3px solid #0e0e0e;
    font-family: arial;
    font-size: 20px;
    font-weight: 600;
    transition: .7s;
}

.modal-bth:hover {
    background-color: white;
    color: #0e0e0e;
    border: 3px solid #0e0e0e;
    cursor: pointer;
}

.modal-bth-ok:hover {
    background-color: #0e0e0e;
    color: white;
    cursor: pointer;
}

.spec2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spec {
    font-size: 35px;
    font-family: arial;
    font-weight: 600;
    letter-spacing: 2px;
}

#cus-btn {
    width: 190px;
    height: 55px;
    background-color: white;
    color: #0e0e0e;
    border: 3px solid #0e0e0e;
    font-family: arial;
    font-size: 20px;
    font-weight: 600;
    transition: .7s;
}

#cus-btn:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}
