.shake {
  animation: shake 0.5s;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}


.custSlideInRight {
  animation: slideInRightAnim 0.3s forwards;
}

@keyframes slideInRightAnim {
  from {
    transform: translateX(50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#nextBtn1, #nextBtn2, #nextBtn3, #nextBtn4, #nextBtn5, #nextBtn6 {
  font-size: 22px;
  padding: 8px 10px;
  border-radius: 50%;
  background: #EFEFEF;
  color: #27B98D;
}

.arrow-button-wrap {
  position: relative;
}
#nextBtn1, #nextBtn2, #nextBtn3, #nextBtn4, #nextBtn5, #nextBtn6 {
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%); */

  position: absolute;
    right: 0;
    top: 45%;
}

#nextBtn2, #nextBtn3, #nextBtn4, #nextBtn5, #nextBtn6 {
  right: 0;
}

#nextBtn1 {
  transform: translate(200%, -286%);
}

#prevBtn {
  left: 0;
  font-size: 22px;
  padding: 8px 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #EFEFEF;
  color: #27B98D;
}
#question1, #question2, #question3, #question4, #question5, #question6 {
  padding: 55px;
}
input.subBtn{
  padding: 9px 15px;
  font-size: 14px;
}

.box1 {
  background-color: #EFEFEF;
  border-radius: 12px;
  padding: 50px;
  align-self: center;
  text-align: left;
}
.box2 {
  background-color: #EFEFEF;
  padding: 30px 20px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-left: 1px solid #27B98D;
  text-align: -webkit-center;
}
.box2 h2 {
  font-size: 20px;
  color: #2d2c42;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.box2 .logo {
  width: 100px;
}
.box2 .mainVec {
  width: 94%;
  margin-top: 25px;
}
.survey-question{
    display: inline-flex !important;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
}
.survey-question img{
    width: 60%;
}

h3.qusHeading {
  color:#27B98D;    
  font-family: "Poppins", sans-serif;
  font-size: 1.3333333333333rem;
  font-weight: 600;
}

#survey-form #message,
#survey-form #message2,
#survey-form #message3,
#survey-form #message4,
#survey-form #message5,
#survey-form #message6{
  color: #B74748;
  font-size: 13px;
  margin-top: 10px;
}

#survey-submit-button {
  background: #27b98d;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Roboto';
  font-weight: 300;
}

.custom-model-main input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 30%;
  width: 17px;
  height: 17px;
  border: 1px solid #27B98D;
  outline: none;
  margin-right: 18px;
  position: relative;
  top: 3px;
}
.custom-model-main input[type="radio"]:checked {
  background-color: #27B98D;
}

.custom-model-main input[type="radio"]:checked::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background: #EFEFEF;
  position: absolute;
  top: 3px;
  left: 3px;
}
.custom-model-main input[type="checkbox"]:checked,
.custom-model-main input[type="checkbox"]:hover:checked,
.custom-model-main input[type="checkbox"]:focus:checked {
  border-color: #27B98D;
  background-color: #EFEFEF;
  border-radius: 4px;
}
.custom-model-main input[type="checkbox"] {
  vertical-align: top;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  margin-right: 18px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  transition: all 0.2s ease-in-out;
}
/* add a custom icon when the checkbox is checked */
.custom-model-main input[type="checkbox"]:checked::before {
  content: "\2714"; /* check mark symbol */
  color: #27B98D; /* color of the check mark */
  background: center;
  font-size: 18px; /* size of the check mark */
  line-height: 0px; /* center the check mark vertically */
  text-align: center; /* center the check mark horizontally */
}

/* Popup model Desktop*/
.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.custom-model-main label {
  color: #1B1A1F;
  font-size: 15px;
  font-family: roboto;
  font-weight: 400;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 950px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: grid;
  grid-template-columns: 65% 35%;
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #EFEFEF;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  backdrop-filter: blur(5px);
  z-index: 99;
}
.bg-overlay {
  background: #00000040;
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
	position: absolute;
    right: 16px;
    top: 0px;
    cursor: pointer;
    z-index: 99;
    font-size: 25px;
    color: #010101;
}

/* Popup model Mobile*/


/* End mobile styles PopUp */
@media (max-width: 544px) {
  #question1, #question2, #question3, #question4, #question5, #question6 {
    padding: 40px;
}
  h3.qusHeading {
    font-size: 16px;
  }
  .custom-model-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .box2 h2 {
    margin-bottom: 9px;
  }
  .box1 {
    order: 2;
    border-top: 1px solid #27B98D;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 0px 50px;
  }
  .box2 {
    order: 1;
    width: 100%;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    border-left: 0px;
    padding: 35px 20px 20px;
  }
  .box2 .mainVec {
    display: none;
  }
}

.popBtn-align {
  position: relative;
}

@media screen and (min-width:800px){
	.custom-model-main:before {
	  content: "";
	  display: inline-block;
	  height: auto;
	  vertical-align: middle;
	  margin-right: -0px;
	  height: 100%;
	}
}
@media screen and (max-width:799px){
  .custom-model-inner{margin-top: 45px;}
}
.popBtn {
  font-size: 17px;
  font-family: 'Roboto';
  color: #fff;
  background-color: #27B98D;
  padding: 12px 15px;
}
/* Custom Roboto font */
@font-face { 
	font-family: Roboto Black; 
	src: url(https://radportal.net/wp-content/plugins/custom-addons-radportal/assets/fonts/Roboto-Black.ttf); 
	font-weight: normal; 
}
@font-face { 
	font-family: Roboto Light; 
	src: url(https://radportal.net/wp-content/plugins/custom-addons-radportal/assets/fonts/Roboto-Light.ttf); 
	font-weight: normal; 
}
