:root{
    --primary-color: #04abcb ;
    --primary-color-hover: #1ab3ce;
}

body{
    margin:45px;
    padding:0px;
    font-family: Arial, sans-serif;
    height:100%;
}

label{
    display:flex;
    font-weight: bold;
    font-size:14px;
    color:rgb(105, 103, 103);
    padding: 5px;
    align-items: center;
}



input, select{
    padding: 10px;
    border: 2px solid rgb(105, 103, 103);
    border-radius: 10px;
    color:  black;
    font-size:12px;
    align-items : center;
    font-weight : 550;
    
}
input:focus{
    border: 2px solid var(--primary-color);   
    outline: none;
}

.sameAsAbove:hover{
    cursor:pointer;
}

.form-input-element{
    display: flex;
    flex-direction : column;
    width: 250px;
    margin:10px;
}

.title-group{
    display:flex;
    flex-direction: row; 
    justify-content: space-between;
    justify-items: center;
}

i{
    color:red;
    font-weight:bold;
    font-size: 18px;
    margin-top:5px;
}

h1{
    margin:0px;
    font-size:32px;
    color: var(--primary-color);
}

h3{
    margin-top: 10px;
    font-size:16px;
    font-style: italic;
    font-weight: normal;
}

h4{
    font-size:16px;
    color: var(--primary-color);
}

.shipping-address-form{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.address-form{
    display:grid;
    width:50%
}


button{
    padding:15px;
    background-color: var(--primary-color);
    color:white;
    border-radius: 10px;
    text-align:center;
    margin:15px;
    border:0px;
    width:300px;

}
button:hover{
    background-color:var(--primary-color-hover);
    cursor: pointer;
}

.button{
    display:flex;
    flex-direction : column;
    align-items : center;
    margin:50px;
}


.content{
    display: flex;
    justify-content: center;
}

.form{
    max-width: 1380px;
}

.side_by_side{
    display: flex;
    flex-direction: row;
    gap:10px;
}

.program-section{
    display: flex;
    flex-direction : column;
    justify-content : space-between;
    justify-items:start;
    width:100%;
}



table{
    border: 2px solid  var(--primary-color);
    border-collapse: separate;
    border-radius: 10px;
    border-spacing: 0px;
    margin-top:10px;
}

td,th{
    padding:12px;
    border: 2px solid  var(--primary-color);
    border-collapse: collapse;
    background-color: #FFFFF;
    width:100px;
}
td{
    text-align:right;
}

.tb-header{
    text-align:left;
    font-weight:bold;
}

.tb-top-header{
    background-color:var(--primary-color, #04abcb );;
    color:white;
    border-radius: 8px 8px 0px 0px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none; 
}

input[type=number] {
    -moz-appearance: textfield;
}
#pop-up{
    background-color:white;
    width:290px;
    border-radius:15px;
    padding:25px;
    border: none;
    outline:none;
}

.message{
    text-align:justify;
    color:black;
}

.dialog-container{
    position:relative;
    display:flex;
    justify-content : center;
    align-items:center;
}


dialog::backdrop{
    background-color: black;
    opacity:50%;
}

#pop-up-close-btn{
    color:white;
    padding:10px;
    margin:30px 0px;
    text-align:center;
    background-color: var(--primary-color) ; 
    border-radius:10px;   
}

#pop-up-close-btn:hover{
    cursor: pointer;
    background-color:var(--primary-color-hover)
}

.message{
    font-size:14px;
    line-spacing:1px;
}
#pop-up span{
    font-weight:bold;
}

