
/*-------------- offer popup -------------------*/
.offer-popup-item {
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 200ms;
    -moz-transition: all ease 200ms;
    -ms-transition: all ease 200ms;
    -o-transition: all ease 200ms;
    transition: all ease 200ms;
}

.offer-popup-content {
    max-width: 940px;
    width: 100%;
    position: fixed;
    background: url(../img/offer-bg.png) no-repeat center center /cover;
    top: 55%;
    transform: scale(0) translateY(-50%);
    -webkit-transform: scale(0) translateY(-50%);
    -moz-transform: scale(0) translateY(-50%);
    -ms-transform: scale(0) translateY(-50%);
    -o-transform: scale(0) translateY(-50%);
    -webkit-transition: all ease 1000ms;
    -moz-transition: all ease 1000ms;
    -ms-transition: all ease 1000ms;
    -o-transition: all ease 1000ms;
    transition: all ease 1000ms;
    z-index: 999;
    left: 10%;
    right: 0;
    margin: auto;
    padding: 40px 40px 0;
    border-radius: 20px;
}

.offer-popup-header {
    position: relative;
    margin-bottom: 15px;
}

.offer-closeBar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #f79d45;

    cursor: pointer;
    padding: 23px 0;
    list-style: none;
    display: list-item;
}

.offer-closeBar span:first-child {
    width: 20px;
    height: 1px;
    background: #f79d45;
    transform: rotate(45deg);
    display: block;
    margin: 0 auto;
    text-align: center;
}

.offer-closeBar span:last-child {
    width: 20px;
    height: 1px;
    background: #f79d45;
    transform: rotate(-45deg);
    display: block;
    margin: 0 auto;
    text-align: center;
}

.offer-popup-img {
    width: 46%;
}

.offer-popup-cont {
    /*width: 43%;*/
    padding-bottom: 154px;
    margin-bottom: 100px;
}

.offer-popup-cont p {
    margin-bottom: 15px;
    font-size: 20px;
    /*font-style: italic;*/
}

.offer-popup-img img {
    width: 100%;
    height: auto;
    position: relative;
    top: -15px;
    right: 20px;
}

.offer-popup-cont a {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    padding: 4px 18px;
    background: #6a1758;
    margin-bottom: 31px;
    border-radius: 38px;
    display: inline-block;
}