.entrant{
    padding-bottom: 30px;
    margin: 5px;
}
.entrant:first-child{
    margin-top: 0;
}
.entrant__head{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.entrant__button{
    flex: 0 1 47%;
}

.entrant__button a{
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 20px;*/
    /*margin-right: 10px;*/
    background-color: var(--text-link-color);
    width: 100%;
    height: 120px;
    padding: 15px;
    border-radius: 10px;
    color: white!important;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);

    transition: all .4s;
}
.entrant__button a:hover{
    text-decoration: none;
    background-color: #14d9a5;
}
.entrant-hr{
    opacity: 0.7;
    margin-bottom: 30px;
}
.entrant__block.block-top{
    padding: 15px 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: #fff;
    margin-bottom: 15px;
}
.entrant__block.background-green{
    border-radius: 10px;
    background-color: var(--text-link-color);
}
.entrant__block.background-red{
    border-radius: 10px;
    background-color: #EB3D30;
}
.entrant__block.block-bottom{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.entrant__block .block-top__title,
.block-bottom__title{
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
}
.entrant__block .block-bottom__item{
    flex: 1 1 auto;
    padding: 15px 40px;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 200px;
    height: 90px;
    border: 1px #B6B6B6 solid;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.entrant__block .block-bottom__item:last-child{
    margin-bottom: 0;
}

.block-bottom__title.title-green{
    color: var(--text-link-color);
}
.block-bottom__title.title-red{
    color: #EB3D30;
}
.block-bottom__text{
    font-weight: 500;
}

.entrant-link__title{
    display: flex;
    align-items: center;
    padding: 15px 40px;
    border-radius: 10px;
    background-color: var(--text-link-color);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.entrant-link__title .title__text{
    width: 90%;
}
.entrant-link__title .title__curcle{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 12px;
}

.alertentr__text.block_row{
    display: flex;
    flex-direction: column;

    border-radius: 9px 9px 0px 0px;
    border: 2px solid #e3e3e3;
    padding: 40px 25px 23px 25px;
    margin: 27px 0px 0px 0px;
}
.alertentr__text.block_row:last-child{
    margin-top: 0px;
    /*margin: 13px 0px 0px 0px;*/
    border-radius: 0px 0px 9px 9px;
    padding: 23px 25px 23px 25px;
}

.alertentr__text .block_row__item {
    display: flex;
    flex-direction: row;
    margin-bottom: 14px;
    width: auto;
    height: auto;
}

.block_row__marker {
    padding-top: 5px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    vertical-align: middle;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: #09c896;
}

.block_row__marker.snow {
    color: #EB3D30;
}

.block_row__text {
    padding: 5px 0px 0px 10px;
    justify-content: center;
    font-size: 18px;
}

.block_row__title {
    font-size: 20px;
    margin-bottom: 14px;
}

.alertentr {
    /*border-radius: 9px;
    border: 2px solid #e3e3e3;
    margin: 5px;
    padding-top: 15px;*/
    margin: 0px 5px 35px 5px;
    text-align: left;
}

.alertentr .alertentr__head {
    width: 257px;
    height: 54px;
    text-align: center;

    border-radius: 25px;
    border: 2px solid #e3e3e3;
    background: #EB3D30;
    color:#fff;
    font-size: 20px;
    padding: 13px 20px 10px 20px;
    position: relative;
    /*top: -20px;*/
    left: calc(50% - (257px/2));
    transform: translateY(100%);
    /*right: 35%;
    transform: translateX(-50%);*/
}

@media (max-width: 1200px) {
    .entrant__block .block-bottom__item{
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .entrant-link__title{
        flex-wrap: wrap;
    }
    .entrant-link__title .title__curcle{
        visibility: hidden;
    }
    .entrant__head{
        justify-content: space-around;
    }
}

@media (max-width: 769px) {
    .entrant__button a{
        height: auto;
        min-height: 120px;
    }
}
@media (max-width: 426px) {
    .entrant__head{
        flex-direction: column;
    }
    .entrant__button{
        width: 100%;
    }
    .entrant__button a{
        height: auto;
        min-height: auto;
        width: 100%;
    }
}






