@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/proximanova_black.otf) format('opentype'),
      url(../fonts/proximanova_black.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/proximanova_blackit.otf) format('opentype')
    font-weight: 900;
    font-style: italic;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/proximanova_bold.otf) format('opentype')
    font-weight: 700;
    font-style: normal;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/proximanova_boldit.otf) format('opentype')
    font-weight: 700;
    font-style: italic;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: Proxima Nova;
    src: url(../fonts/proximanova_extrabold.otf) format('opentype')
    font-weight: 800;
    font-style: normal;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: Proxima Nova light;
    src: url(../fonts/proximanova_light.otf) format('opentype')
    font-weight: 100;
    font-style: normal;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: Proxima Nova regular;
    src: url(../fonts/proximanova_regular.ttf) format('opentype')
    font-weight: 400;
    font-style: normal;
    font-stretch: semi-extended;
    font-variant: normal;
}
@font-face {
    font-family: OpenSans-Medium;
    src: url(../fonts/OpenSans-Medium.ttf) format('opentype')
    font-weight: 400;
    font-style: normal;
    font-stretch: semi-extended;
    font-variant: normal;
}
body .heading{
    background: #371D4F;
    max-width: 100%;
    padding: 90px 15px;
}
body .heading h2{
    font-family: 'Proxima Nova light', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 62px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    max-width: 792px;
    margin: auto;
    margin-bottom: 20px;
}
body .heading p{
    font-family: 'OpenSans-Medium', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    max-width: 792px;
    margin: auto;
}
body .test-content{
    max-width: 900px;
    padding: 100px 0;
    margin: auto;
}
body .test-content h3{
    font-family: 'Proxima Nova light', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
    color: #371D4F;
    margin: 0 0 0 15px;
}

body .test-content h3{
    font-family: 'Proxima Nova light', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
    color: #371D4F;
    margin: 0 0 0 15px;
}

body .test-content .questions{
    margin: 30px -8px 0 -8px;
    display: grid;
    grid-template-columns: 33.33333% 33.33333% 33.33333%;
}

body .test-content .questions .item{
    padding: 20px;
    background: #F2F2F2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    gap: 8px;
    margin: 8px 8px;
}
body .test-content .questions .item p, body .test-content #customer_data .container p{
    font-family: 'OpenSans-Medium', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 160%;
    margin: 0;
    color: #371D4F;
}

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #371D4F;
    border-radius: 2px;
    width: 22px;
    height: 22px;
    margin-top: 3px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #FFDD00;

}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #371D4F;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
body .test-content .questions .item .container{
    text-align: left;
}
body .test-content .questions .item.active .checkmark{
    background: #FFDD00;
}

body .test-content .questions .item.active p{
    color: #fff;
}

body .test-content .questions .item.selected{
    background: rgba(106, 0, 204, 0.25);
}

body .test-content .questions .item.active{
    background: #51009C;
}
#questions{
    text-align: center;
}

#questions [type="submit"]{
    background: #FFDD00;
    font-family: 'OpenSans-Medium', sans-serif;
    font-style: normal;
    font-size: 18px;
    color: #371D4F;
    padding: 23px 48px;
    border: none;
    margin-top: 8px;
}
body .customer_data{
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}
body .customer_data [type="text"],body .customer_data [type="email"]{
    font-family: 'OpenSans-Medium', sans-serif;
    font-style: normal;
    font-weight: 600;
    border: medium none;
    --tve-applied-border: none;
    border-radius: 0px;
    margin: 8px 0;
    overflow: hidden;
    padding: 22px 40px !important;
    background-image: none !important;
    --tve-applied-background-image: none !important;
    background-color: #F2F2F2 !important;
    --tve-applied-background-color: #F2F2F2 !important;
    box-sizing: border-box;
    font-size: 20px;
    color: #371D4F;
    outline:none;
}
body .customer_data [type="text"]::placeholder, body .customer_data [type="email"]::placeholder{
    color: rgb(150,128,170);
}
body #customer_data [type="submit"]{
    background: #FFDD00;
    font-family: 'OpenSans-Medium', sans-serif;
    font-style: normal;
    font-size: 18px;
    color: #371D4F;
    padding: 23px 48px;
    border: none;
    margin: auto;
    margin-top: 8px;
    width: max-content;
}
body .test-content [type="submit"]{
    cursor: pointer;
}
.hide{
    display: none;
}
.backmodal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    opacity: 0.7;
 }
.backmodal div {
    width: 100px;
    height: 100px;
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);

    border: 10px solid #f3f3f3;
    border-top: 10px solid rgba(106, 0, 204, 0.25);
    border-radius: 50%;

    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.content_pdf div{
    display: none;
}
.switch{
    display: flex;
}
.switch a{
    background: #F2F2F2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    gap: 8px;
    margin: 8px 8px; 
    text-decoration: none;
    color: #371D4F;
}
.switch a.active {
    background: #51009C;
    color: #fff;
}
#m-1781ce3e2d4{
	display:none;
}
.switch{
	display:none;
}
@media screen and (max-width: 990px) {
    body .test-content .questions .item p, body .test-content #customer_data .container p{
        font-size: 16px;
    }
    body .test-content h3{
        font-size: 34px;
        line-height: 43px;
    }
    body .test-content .questions .item{
        padding: 10px;
    }
    #customer_data{
        line-height: 19px;
        font-size: 14px;
    }
    body .heading h2{
        font-size: 45px;
    }
    body .heading p{
        font-size: 16px;
    }
    body .heading{
        padding: 30px 15px;
    }
    body .test-content{
        padding: 30px 0;
    }
    body .customer_data [type="text"], body .customer_data [type="email"]{
        font-size: 16px;
        padding: 15px 22px !important;
    }
    body #customer_data [type="submit"]{
        font-size: 16px;
        padding: 15px 33px;
    }
    #questions [type="submit"]{
        font-size: 16px;
        padding: 15px 33px;
    }
}
@media screen and (max-width: 825px) {
    body .test-content .questions{
        grid-template-columns: 50% 50%;
    }
}
@media screen and (max-width: 580px) {
    body .test-content .questions{
        grid-template-columns: 100%;
    }
    body .test-content h3{
        font-size: 20px;
        line-height: 26px;
    }
    body .heading h2{
        font-size: 30px;
    }
}