.popup{
    display: none;
    width: 520px;
    height: 320px;
    position: fixed;
    top: 0;
    left: 20px;
    z-index: 400;
}
/*.popup:before{
    content: '';
    width: 520px;
    height: 320px;
    position: absolute;
    top: 17px;
    left: 0;
    box-shadow: 6px 6px 13px rgba(0,0,0,.3);
    z-index: 99;
}*/
/*.popup.is-authorized {
    top: 80px;
}*/

.popup__inner{
    position: relative;
    z-index: 100;
    /*width: 520px;*/
    box-shadow: 0 0 20px rgba(0,0,0,.5);
}

@media (max-width: 650px){
    .popup{
        width: 100%;
        height: auto;
        top: 0;
        left: auto;
        z-index: 300;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
    .popup:before{
        display: none;
    }
    .fixed-header .popup{
        top: 20px;
    }
}

.popup__picture{
    background-color: #c5c5c5;
    background-position: top left;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding: 30px 35px;
    box-sizing: border-box;
    color: white;
    font-size: 26px;
}
.popup__content{
    padding: 25px;
    background-color: white;

}
.popup__main{
    border: 1px solid #f43537;
    background-image: url("/images/travel.png");
    background-repeat: no-repeat;
    padding-left: 100px;
    padding-right: 10px;
    padding-top: 15px;
    box-sizing: border-box;
    height: 92px;
    margin-bottom: 30px;
}

.popup__main img {
	position: absolute;
	top: 47%;
	left: 8%;
	max-width: 72px;
	max-height: 72px;
}

.popup__main__heading {
	font-weight: 600;
    margin-bottom: 10px;
}

.popup__main__heading, .popup__main__subheading{
    display: inline-block;
}
.popup__content__button_subscribe, .popup__content__button_decline{
    height: 30px;
    line-height: 25px;
    text-decoration: none;
    -webkit-transition: .3s color, .3s background-color, .3s border;
    -moz-transition: .3s color, .3s background-color, .3s border;
    -o-transition: .3s color, .3s background-color, .3s border;
    transition: .3s color, .3s background-color, .3s border;
    display: inline-block;
    text-align: center;
    max-width: 150px;
    width: 100%;
    box-sizing: border-box;
}
.popup__content__button_subscribe{
    background-color: white;
    color: black;
    border: 1px solid #f43537;
    margin-right: 20px;

}
.popup__content__button_decline{
    color: black;
    border: 1px solid #f43537;
}
@media (max-width: 550px){
    .popup__main{
        background-image: none;
        padding: 10px;
        box-sizing: border-box;
        height: auto;
        margin-bottom: 30px;
    }
    .popup__picture{
        height: auto;
        background-size: cover;
        font-size: 23px;
    }
    .popup__content__button_subscribe, .popup__content__button_decline{
        display: block;
        max-width: none;
    }
    .popup__content__button_decline{
        margin-top:15px;
    }

    .popup__main img {
    	display: none;
    }
}
.popup__content__button_subscribe:hover,
.popup__content__button_subscribe:link:hover{
    background-color: #f43537;
    color: white;
    text-decoration: none;
}
.popup__content__button_decline:hover,
.popup__content__button_decline:link:hover{
    background-color: #f43537;
    color: white;
    text-decoration: none;
}
.popup__exit{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 17px;
    top: 17px;
    cursor: pointer;
}
.popup__exit__stick_1, .popup__exit__stick_2{
    width: 100%;
    background-color: white;
    height: 2px;
    position: absolute;
}
.popup__exit__stick_1{
    transform: rotate(45deg);
    top: 10px;

}
.popup__exit__stick_2{
    transform: rotate(-45deg);
    top: 10px;
}