#opros{
    padding: 30px 0;
    max-width: 1024px;
    margin: 0 auto;
}
#opros label{
    display: block;
    width: fit-content;
    margin: 15px 0;
    cursor: pointer;
	font-size: 18px;
	font-family: Raleway,sans-serif;
    font-weight: 400;
}
#opros .oprosBtn{
    display: block;
    color: white;
    border-radius: 0;
    margin-top: 25px;
    cursor: pointer;
    transition: all .3s;
	background-color: #ff013d;
    color: white;
    padding: 14px 20px;
    border: none;
}
#opros .oprosBtn:hover{
    opacity: 0.8;
}
#opros h1{
    font-size: 24px;
    margin: 0;
	line-height: 1.3;
	padding-bottom: 15px;
}
#opros p{
    font-size: 18px;
    margin: 0 0 25px;
}
#opros .opros__ch{
    margin: 20px 0 0;
}

.iframeBlock{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
	z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}
.iframeBlock.active{
    display: flex;
}
.iframeBlockContent{
    margin: auto;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background-color: white;
    border: 5px solid #ff013d;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.iframeBlockBtnClose:hover{
    opacity: 0.8;
}
.iframeBlockContentIframe{
    overflow: hidden;
    flex: 1 1 auto;
}

[data-form] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
[data-form] input, [data-form] textarea, [data-form] select {
    background-color: #fff;
    padding: 8px 12px;
    resize: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    border: 1px solid gray;
    border-radius: 5px;
    color: #000;
    outline: none;
}
[data-form] input::placeholder, [data-form] textarea::placeholder {
    color: #8c8c8c;
    font-weight: 400;
}
[data-form] input[type=submit], [data-form] textarea[type=submit] {
    padding: 15px 29px 13px;
    background: #ff013d;
    border: 2px solid #fff;
    border-radius: 5px;
    display: block;
    margin: 0 auto 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s;
}
[data-form] input.success, [data-form] textarea.success {
    border-color: green;
}
[data-form] input.error, [data-form] textarea.error {
    border-color: red;
}
[data-form] [data-submit] {
    cursor: pointer;
    transition: all 0.3s;
}
[data-form] [data-submit]:disabled {
    cursor: no-drop;
    opacity: 0.75;
}
[data-form] [data-submit]:disabled:hover {
    transform: none;
}
[data-form] [data-submit]:hover {
    opacity: 0.8;
}
[data-form] [data-sp] {
    display: none;
    width: 100% !important;
    border: 1px solid gray;
    text-align: center;
    padding: 10px 20px;
    color: #323234;
    font-size: 16px;
    border-radius: 5px;
}
@media (max-width: 550px) {
    [data-form] [data-sp] {
        padding: 10px 15px;
        font-size: 14px;
   }
}
[data-form] [data-sp].active {
    display: block;
}

.container.form{
    display: none;
}
.container.form.active{
    display: block;
}
.opros__title{
	font-size: 24px;
    margin: 0;
    line-height: 1.3;
    padding-bottom: 15px;
	font-family: Montserrat,sans-serif;
    font-weight: 500;
	color: #003164;
}

@media(max-width: 550px){
	#opros{
		padding: 55px 0 25px
	}
	#opros h1 {
		font-size: 22px
	}
	.opros__title {
		font-size: 20px;
		padding-bottom: 10px;
	}
}


