
.modal-title{
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: #2A2A2A;
}

.modal-subtitle{
    position: relative;
    font-size: 14px;
    color: #636363;
    margin-top: -0.5em;
    text-align: center;
}

.black-panel{
    top:0px;
    left:0px;
    position: fixed;
    background-color: rgba(42,42,42,0.35);
    height: 100vh;
    width: 100vw;
    z-index: 10;
}

.transparent-panel{
    top:0px;
    left:0px;
    position: fixed;
    background-color: transparent;
    height: 100vh;
    width: 100vw;
    z-index: 10;
    pointer-events: none;
}

.modal-box {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-padding-modal-box {
    box-shadow: 0px 11px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: -5em;
}

.white-modal-box{
    background-color: white;
    padding:3em;
    box-shadow: 0px 11px 20px 0px #0000001A;
    border-radius: 5px;
}

.modal-big{
    width: 55% !important;
    height: 60% !important;
    padding: 0 !important;
}

.modal-medium-big{
    width: 45% !important;
    height: 47% !important;
}

.modal-medium{
    width: 35% !important;
    height: 40% !important;
}

.modal-small-medium{
    width: 30% !important;
    height: 40% !important;
}

.modal-small{
    width: 25% !important;
    height: 30% !important;
}

.modal-vertical{
    width: 25% !important;
    height: 60% !important;
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}

.modal-vertical-post-tool{
    width: 400px !important;
    max-width: 90%;
    height: 85vh !important;
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}

.modal-vertical-share {
    width: 30% !important;
 /*   height: 65% !important;*/
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}

@media screen and (min-width: 1600px){
    .modal-big{
        width: 45% !important;
        height: 50% !important;
        padding: 0 !important;
    }

    .modal-medium-big{
        width: 30% !important;
        height: 35% !important;
    }

    .modal-medium{
        width: 25% !important;
    }

    .modal-small-medium{
        width: 20% !important;
        height: 35% !important;
    }

    .modal-small{
        width: 15% !important;
        height: 25% !important;
    }

    .modal-vertical{
        width: 18% !important;
        height: 50% !important;
        padding-top: 2em !important;
        padding-bottom: 2em !important;
    }

    .modal-vertical-share {
        width: 30% !important;
        height: 65% !important;
        padding-top: 2em !important;
        padding-bottom: 3em !important;
    }
}


.modal-confirm {
    align-items: flex-start;
}

.modal-footer {
    display: flex;
    gap: 10px;
}

.modal-danger-button,
.modal-secondary-button,
.modal-default-button {
    margin-top: 1.5em;
    background-color: #E04D46;
    border: 1px solid #E14942;
    border-radius: 0px;
    font-weight: 400;
    color: white;
    height:40px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    padding: 10px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-default-button {
    background-color: black;
    color: white;
    border: 1px solid black;
}

.modal-secondary-button {
    background-color: #EBEBEB;
    color: black;
    border: 1px solid #EBEBEB;
}

.modal-danger-button:hover{
    background-color: #D34942;
    border: 1px solid #D34942;
    transition: 0.3s;
}

.modal-danger-button:focus{
    outline: #E04D46;
}
