div.pop_up_02{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.207);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop_up_02 .contain_center{
    width: 70%;
    height: 500px;
    background-color: black;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 2px 4px 5px -3px #fff; 
    box-shadow: 2px 4px 5px -3px #fff;
    border-radius: 10px;
    
}
.pop_up_02 .contain_center .btn_close{
    position: absolute;
    top: -30px;
    right: -30px;
    height: 60px;
    width: 60px;
    background-color: black;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

}
.pop_up_02 .contain_center .btn_close button{
    height: 100%;
    width: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: white;
    font-size: 22px;
    border-radius: 50%;
    transition: all 250ms ease-in-out;
}
.pop_up_02 .contain_center .btn_close button:hover{
    background-color: rgb(25, 25, 25);
}
.pop_up_02 .contain_center .contain_left{
    width: 400px;
    height: 400px;
    position: relative;
}

.pop_up_02 .contain_center .contain_left .contain_element{
    padding-left: 30px;
    padding-right: 30px;
} 
.pop_up_02 .contain_center .contain_left .contain_element .contain_img{
    height: 90px;
    width: 100%;
    background-color: white;
    margin-bottom: 15px;
    background-image: url("../images/live-yvettek01.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pop_up_02 .contain_center .contain_left .contain_element p.title{
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    text-align: left;
    margin-bottom: 5px;
}
.pop_up_02 .contain_center .contain_left .contain_element p.sous_title {
    font-size: 12px;
    font-style: italic;
    color: white;
}

.pop_up_02 .contain_center .contain_left .contain_element .contain_form .contain_line{
    display: flex;
    margin-bottom: 5px;
}
.pop_up_02 .contain_center .contain_left .contain_element .contain_form .contain_line input{
    width: 100%;
    height: 36px;
    margin-right: 5px;
    border: none;
    border-radius: 4px;
    padding-left: 8px;
    font-size: 12px;
    font-weight: bold;
}

.pop_up_02 .contain_center .contain_left .contain_element .contain_form .contain_line button {
    width: 100%;
    height: 40px;
    border: 1px solid white; 
    background-color: black;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0px;
    margin-top: 15px;
    transition: all 250ms ease-in-out;
}
.pop_up_02 .contain_center .contain_left .contain_element .contain_form .contain_line button:hover{
    background-color: rgb(32, 32, 32);
    
}



.pop_up_02 .contain_center .contain_right{
    width: calc(100% - 400px);
    height: calc(100%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}
.pop_up_02 .contain_center .contain_right .contain_title{
    padding-left: 0;
    padding-right: 30px;
    height: calc(100%);
}
.pop_up_02 .contain_center .contain_right p.title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-align: center;
}
.pop_up_02 .contain_center .contain_right p.text_01{
    text-align: left;
    font-size: 16px;
}

.pop_up_02 .contain_center .contain_right .contain_img{
    height: calc(100%);
    background-image: url("../images/live-yvettek02.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.pop_up_02 .contain_center .contain_right .contain_img .contain_bg_dark{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.pop_up_02 .contain_center .contain_right .contain_img .contain_text{
    color: white;
    position: relative;
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;

}

.pop_up_02 .contain_center .contain_right .contain_line{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
.pop_up_02 .contain_center .contain_right .contain_line .left_element{ 
    width: 60%;
    color: white;
    padding-left: 15px;
    padding-right: 15px;

}
.pop_up_02 .contain_center .contain_right .contain_line .left_element p{
    font-size: 14px;
    margin: 0;
    padding: 0;
    
}
.pop_up_02 .contain_center .contain_right .contain_line .right_element{
    width: 40%;
}
.pop_up_02 .contain_center .contain_right .contain_line .right_element .element{
    padding-left: 8px;
    padding-right: 8px;
}
.pop_up_02 .contain_center .contain_right .contain_line .right_element  .contain_img{
    height: 150px;
    width: 100%;
    min-height: auto;
    
}
.pop_up_02 .contain_center {
    display: block;
}
.pop_up_02 .contain_center .contain_element{
    display: flex;
    align-items: center;
    height: 100%;

}
.pop_up_02 .contain_center .contain_element.sub{
    border-radius: 10px;
    overflow: hidden;
}
.pop_up_02 .contain_center .contain_left .contain_element{
    display: block;
    margin-top: 15px;
}

@media only screen and (max-width: 1050px){
    .pop_up_02 .contain_center{
        width: 90%;
    }
    .pop_up_02 .contain_center .contain_right .contain_title{
        padding-right: 0;
    }
}

@media only screen and (max-width:850px){
    .pop_up_02 .contain_center .contain_right{
        width: calc(100% - 300px);
    }
    .pop_up_02 .contain_center .contain_left{
        width: 300px;
    }
}

@media only screen and (max-width:650px){
    .pop_up_02 .contain_center .contain_right p.title{
        font-size: 16px;
    }
    .pop_up_02 .contain_center .contain_right p.text_01{
        font-size: 14px;
    }
    .pop_up_02 .contain_center .contain_right{
        width: 100%;
    }
	.pop_up_02 .contain_center .contain_right .contain_title{
		height:auto;
		margin-bottom:0px;
	}
    .pop_up_02 .contain_center .contain_left{
        width: 100%;
    }
    .pop_up_02 .contain_center .contain_element{
        display: flex;
        flex-wrap: wrap;
        overflow-y: scroll;
    
    }
    .pop_up_02 .contain_center .contain_left .contain_element{
        display: block;
        margin-top: 15px;
    }
    .pop_up_02 .contain_center .contain_right{
        height: auto;
    }
    .pop_up_02 .contain_center .contain_right .contain_img{
        height: auto;
        margin-top: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .pop_up_02 .contain_center{
        width: calc(100% - 60px);
    }

}

@media only screen and (max-width:370px){
    .pop_up_02 .contain_center{
        width: calc(100% - 40px);
    }

    .pop_up_02 .contain_center .contain_left{
        height: auto;
        
    }
    .pop_up_02 .contain_center .btn_close{
        height: 45px;
        width: 45px;
        top: -20px;
        right: -20px;
    }
}





