/*=======Sticky btns=======1.1*/
.sticky-btn {
    height: 50px;
    border: solid 3px #DD0613;
    background: black;
    width: 145px;
    line-height: 32px;
    -webkit-transform: rotate(-90deg);
    font-weight: 600;
    color: white;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    text-align: center;
    position: fixed;
    right: -55px;
    bottom: 185px;
    /*top: 45%;*/
    /*font-family: "Roboto", helvetica, arial, sans-serif;*/
    z-index: 100;
    -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.1s cubic-bezier(0, 0, 0.58, 1);
}

.sticky-btn:hover, .sticky-btn:focus {
    border: solid 3px #000000;
    background: #DD0613;
    outline: 0;
}

/*=======Sticky ads=======*/
#ad {
    /*width:250px;
    height:180px;*/
    position: fixed;
    bottom: 40px;
    right:0px;
    /*background-color: #eeeeee;*/
    z-index:100;
    margin-right:-320px;
    -webkit-transition: right 0.2s ease-in-out;
    -moz-transition: right 0.2s ease-in-out;
    -o-transition: right 0.2s ease-in-out;
    transition: right 0.2s ease-in-out; 
    transition-property: margin-right;
    transition-duration: 1s;
    -webkit-transition-property: margin-right; /* Safari */
    -webkit-transition-duration: 1s; /* Safari */
}

#ad.active
{
    margin-right:0px;
}

#ad.hide-sticky{
    /*right:-200px; */
    margin-right:-320px;
}

#closeBtn {
    position: absolute;
    font-size:20px;
    right:5px;
    color:#ec2f24;
    text-shadow: 2px 2px 4px #000000;
    padding:5px;
    cursor: pointer;
}
/*
#ad > a img {
    width: 260px;
}
*/

.sticky-content {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 10px;
}

#btn-sticky-cta {
    border-radius: 12px;
}


@media only screen and (max-width: 767px) {
    
    .sticky-btn {
        height: 40px;
        width: 120px;
        bottom: 43%;
        right: -45px;
    }
    
    #btn-sticky-cta {
        border-radius: 5px;
    }
    
    /*===Sticky Ads additions===*/
    
    #ad > img {
        width: 100%;
    }
    
    #ad {
        width: 220px;
    }
    
    
    #closeBtn {
        margin-right: 0px;
        font-size: 25px;
    }
    
    #ad.hide-sticky,
    #ad.active {
        bottom: 25%;
    }
    
}

/*4K Screen Resolution*/
@media only screen and (min-width: 1441px) {
    #ad > img {
        width: 100%;
    }
}