
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    right:0;
    bottom: 0;
    left: 0;
    display: none; 
    z-index: 10;
    overflow: auto;
    background: rgba(0,0,0,0.6);
  
}
.modal__body {
    border-radius: 5px;
    
    font-weight: 400;
    width: 400px;
    overflow: hidden;
    margin: auto;
    background-color: #fff; 
    animation: fadeOut ease-out .3s;
    
} 
.modal__container {
    margin: 10px;
    color: #0D132C;
    background-color: #fff;  
}
.modal__container--items {
   display: flex;
   justify-content: flex-end;   
}
#close__item {
    margin: 5px 5px 0 0;
    font-size: 20px; 
    color: #0D132C;
    cursor: pointer;
}
#close__item:hover,
#close__item:focus {
    color: #9dc6fb;
}

.modal__container--label {
    text-align: center;
}
.modal__container--label .delete h3{
    font-size: 12px;
}
.modal__container--label h3 {
    margin: 0;
    font-size: 15px;
    letter-spacing: 2px;
}
.modal__container--input {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.modal__container--input span {
    margin-left: 10px;
    color: #0D132C;
    display: flex;
    align-items: flex-end;
}
#download-input {
    height: 35px;
    padding: 8px;
    width: 270px;
    border: none;
    outline: none;
    border: 2px solid #0D132C;
    font-size: 14px;
    font-weight: 500;
    font-weight: 500;
}
::-webkit-input-placeholder {
    font-size: 14px;
    color: rgb(175, 164, 164);
    font-weight: 400;
}
.modal__container--download {
    margin: 20px;
}


.modal__preview {
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    right:0;
    bottom: 0;
    left: 0;
    display: none; 
    z-index: 10;
    overflow: auto;
    background: rgba(0,0,0,0.6);
    animation: fadeOut ease-out .3s;
}
.modal__preview--body{
    margin: auto;
    padding: 20px;
} 
.modal__delete {
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    right:0;
    bottom: 0;
    left: 0;
    display: none; 
    z-index: 10;
    overflow: auto;
    /* display: flex; */
    background: rgba(0,0,0,0.6);

}
.modal__delete--body{
    margin: auto;
    padding: 20px; 
    background-color: #fff;
    color: #0D132C;
    animation: fadeOut ease-out .3s;
} 
.modal__container--label {
    margin: 15px 40px;
    margin-bottom: 25px;
    font-size: 17px;
    font-weight: 500;
}
#close__delete {
    font-size: 20px; 
    color: #0D132C;
    cursor: pointer;
}
#close__delete:hover,
#close__delete:focus {
    color: #9dc6fb;
}
.btn__delete {
    display: flex;
    justify-content:space-between;
    margin: 0px 35px;
}
.btn__delete button {
    border: none;
    outline: none;
    padding: 5px 15px;
    background-color: #9dc6fb;
    color: #0D132C;
    font-weight: 400;
    cursor: pointer;
}
.btn__delete button:hover {
    opacity: 0.8;
}
.modal__add--social {
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    right:0;
    bottom: 0;
    left: 0;
    display: none; 
    z-index: 10;
    overflow: auto;
    /* display: flex; */
    background: rgba(0,0,0,0.6);
}
.modal__add--body {
    margin: auto;
    padding: 20px; 
    background-color: #fff;
    width: 450px;
    border-radius: 10px;
    animation: fadeOut ease-out .3s;
}
#close__add {
    font-size: 22px; 
    color: #0D132C;
    cursor: pointer;
}
#close__add:hover,
#close__add:focus {
    color: #9dc6fb;
}
.modal__add--contact {
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    right:0;
    bottom: 0;
    left: 0;
    display: none; 
    z-index: 10;
    overflow: auto;
    /* display: flex; */
    background: rgba(0,0,0,0.6);
}
#close__add--contact {
    font-size: 22px; 
    cursor: pointer 
}
.close:hover,
.close:focus {
    color: #9dc6fb;
}
.close {
    color: #17224d;
}
@keyframes fadeOut {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
  
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }