.modal-box{ font-family: 'Ubuntu', sans-serif; }
.modal-box .show-modal{
    color: #fff;
    background-color: #EE5A24;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    margin: 80px auto 0;
    border: none;
    box-shadow: -5px 5px 1px rgba(0, 0, 0, 0.3);
    display: block;
}
.modal-box .show-modal:hover{
    color: #fff;
    border: none;
}
.modal-box .modal{
    /*top: 90px !important;*/
}
.modal-box .modal-dialog{
    width: 50vw;
    margin: 0 auto;
    min-width: 351px;
}
.modal-box .modal-dialog .modal-content{
    text-align: center;
    border-radius: 0;
    border: none;
    overflow: hidden;
    position: relative;

    background:url("/scoreload.png") white no-repeat center top -50px;
    box-shadow: none;
}
/*.modal-box .modal-dialog .modal-content:before{*/
/*    content: "";*/
/*    background: #ED7906;*/
/*    width: 100%;*/
/*    height: 130px;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/
.modal-box .modal-dialog .modal-content .close{
    color: #ED7906;
    background-color: #fff;
    font-size: 32px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 0 0 0 25px;
    box-shadow: -5px 5px 1px rgba(0, 0, 0, 0.1);
    opacity: 1;
    position: absolute;
    left: auto;
    right: -3px;
    top: 0;
    z-index: 1;
    transition: all 0.3s;
}
.modal-box .modal-dialog .modal-content .close span{
    margin: -7px 0 0 0;
    display: block;
}
.modal-box .modal-dialog .modal-content .close:hover{
    color: #fff;
    background-color: #333;
}
.modal-box .modal-dialog .modal-content .modal-body{
    padding: 0px 20px 30px !important;
    margin-top:85px;
    min-height: 100px;
}
.modal-box .modal-dialog .modal-header
{
    background: #ED7906;
    width: 100%;
    min-width: 350px;
    height: 30px;
    border: 0;
    padding:0;
    margin:0;
}
.modal-box .modal-dialog .modal-ad
{
    width: 100%;
    min-width: 350px;
    min-height: 250px;
    border: 0;
    padding:0;
    margin:0;
}

/*.modal-box .modal-dialog .modal-content .modal-body .icon{*/
/*    color: #EE5A24;*/
/*    background: #fff;*/
/*    font-size: 50px;*/
/*    line-height: 100px;*/
/*    height: 100px;*/
/*    width: 100px;*/
/*    margin: 0 auto 20px;*/
/*    !*border-radius: 50px;*!*/
/*    !*box-shadow: 0 0 10px rgba(0,0,0,0.2);*!*/
/*    position: relative;*/
/*}*/
/*.modal-box .modal-dialog .modal-content .modal-body .icon:before{*/
/*    content: "";*/
/*    width: 130px;*/
/*    height: 130px;*/
/*    !*border: 2px solid #fff;*!*/
/*    !*border-radius: 100px;*!*/
/*    opacity: 0.2;*/
/*    transform: translateX(-50%) translateY(-50%);*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*}*/
.modal-box .modal-dialog .modal-content .modal-body .title{
    color: #444;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}
.modal-box .modal-dialog .modal-content .modal-body .description{
    color: #444;
    font-size: 16px;
    margin: 0 0 25px;
}
.modal-box .modal-dialog .modal-content .download{
    color: #fff;
    background: #333;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 16px 32px;
    margin: 0 auto 20px;
    border: none;
    border-radius: 0;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.modal-box .modal-dialog .modal-content .download:before,
.modal-box .modal-dialog .modal-content .download:after{
    content: "";
    background: #ee5a24;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: skew(-45deg) scaleX(0);
    position: absolute;
    top: 0;
    right: 70%;
    z-index: -1;
    transition: transform 0.3s ease-in-out 0s;
}
.modal-box .modal-dialog .modal-content .download:after{
    right: auto;
    left: 70%;
}
.modal-box .modal-dialog .modal-content .download:hover:before,
.modal-box .modal-dialog .modal-content .download:hover:after{
    transform: skew(-45deg) scaleX(1.5);
}
.modal-box .modal-dialog .modal-content .modal-body .tip{
    color: #949494;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    border: none;
}


.modal-box .modal-dialog .modal-content .modal-body .skip:hover{ text-decoration: underline; }
@media only screen and (max-width: 576px){
    .modal-dialog{ width: 93% !important; }
}

.progress-bar.bg-primary {
    background-color: #0d6efd !important;
}

.progress-bar.bg-success {
    background-color: #198754 !important;
}

#myModal .progress {
     height: 30px;
     border-radius: 0;
 }

.progress-bar {
    background-color: rgb(237, 121, 6);
    transition: width 1s ease-in-out;
    animation: pulse-bg 1.5s ease-in-out infinite;
}

@keyframes pulse-bg {
    0% {
        background-color: rgba(237, 121, 6, 1);
        box-shadow: 0 0 0 0 rgba(237, 121, 6, 0.4);
    }
    50% {
        background-color: rgba(237, 121, 6, 0.8); /* Полупрозрачная версия */
        box-shadow: 0 0 0 8px rgba(237, 121, 6, 0);
    }
    100% {
        background-color: rgba(237, 121, 6, 1);
        box-shadow: 0 0 0 0 rgba(237, 121, 6, 0);
    }
}