.modal
{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0px;
    left:0px;
    z-index: 10000;
    background: rgba(0, 0, 0, .65);
    display: none;
}
.modal__area
{
    overflow-y: scroll;
    flex-direction: column;
    width: 400px;
    height: 70%;
    background: rgba(35, 35, 35, 0.99);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.6s;
    animation-name: animatetop;
    animation-duration: 0.6s;
}
.modal__area::-webkit-scrollbar
{
    width: 6px;
    background: transparent;
}
.modal__area::-webkit-scrollbar-thumb
{
    background: #FF6B00;
}
@-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}
}
.modal__header
{
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #FFFFFF;
    justify-content: space-between;
}
.modal__heder__text
{
    margin-left: 30px;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}
.modal__heder__close
{
    margin-right: 30px;
    background: #FF6B00;
    box-shadow: 0px 4px 10px rgba(255, 107, 0, 0.25);
    width: 24px;
    height: 24px; 
    color:#fff;
    border-radius: 15px;  
    font-weight: 200;
    cursor: pointer;
}
.close
{
    width: 17px;
    height: 12px;
}
.modal__body
{
    position: relative;
    margin: auto;
    width: 85%;
    height: 100%;
}
.modal__body__content
{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}