.modal-small {
    display: none;
    border: 1px solid #D9D9D9;
    font-family: Roboto;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 450px;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1000;
    padding: 40px;
    padding-left: 75px;
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    color: #000000;
    font-size: 16px;
    box-shadow: 0px 14px 35px 0px rgba(190, 190, 190, 0.25); 
}
.modal-small.active {
    display: flex;
    flex-direction: column;
}

.modal-small.active + .modal-overlay {
    display: block;
}
.modal-small .modal-close {
    top: 17px;
    right: 17px;
}
.modal-small__content {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 35px;
}
.modal-small__content svg {
    grid-column: 1;
    grid-row: 1/3;
    justify-self: center;
    align-self: center;
}
.modal-small__title {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: Neris;
    font-size: 22px;
    font-weight: 900;
    line-height: normal; 
}
.modal-small p {
    grid-column: 2;
    text-align: left;
    color: #000;
    font-family: Neris;
    font-size: 16px;
    font-weight: 300;
    line-height: normal; 
}

.modal-small__content a {
    text-align: left;
    color: #56B98F;
    font-family: Neris;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: 0.2s;
}
.modal-small__content a:hover {
    color: #2b4ea1;
}

.modal-close,
.modal-close svg,
.modal-close svg path {
    transition: 0.2s;
}
.modal-close:hover,
.modal-close:hover svg path {
    color: #56B98F;
    stroke: #56B98F;
}
