body {
  background-image: url('../img/bg_blur.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body .main {
  background-image: url('../img/bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1323px;
  width: 100%;
}

/* The radio */
.radio {
 
     display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    padding-left: 35px;
    font-weight: 700;    
}

/* Hide the browser's default radio button */
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkround {

    position: absolute;
    top: 6px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff ;
    border-color:#28a745;
    border-style:solid;
    border-width:2px;
    border-radius: 50%;
}


/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checkround {
    background-color: #fff;
}

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

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkround:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkround:after {
     left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:#28a745;
}


/* The check */
.check {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    padding-right: 15px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    padding-left: 35px;
    font-weight: 700;
}

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

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff ;
    border-color:#28a745;
    border-style:solid;
    border-width:2px;
}



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

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

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

/* Style the checkmark/indicator */
.check .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid ;
    border-color:#28a745;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.main .arrow{
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 15px;
  margin-left: 2px; 
}
.main .menu{
  padding-top: 400px;
  padding-left: 60px;
  padding-right: 60px;
}
.main .menu button{
  background: transparent;
  outline: none;
  box-shadow: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 90px;
}
.main .menu .btn-1{
  background-image: url('../img/button_1.png');
}

.main .menu .btn-1:hover, .main .menu .btn-1.active{
  background-image: url('../img/button_3.png');
}

.main .menu .btn-2{
  background-image: url('../img/button_2.png');
}

.main .menu .btn-2:hover, .main .menu .btn-2.active{
  background-image: url('../img/button_4.png');
}

.block-content{
  padding: 0px 61px;
}

.block-content-firt{
  padding: 0px 185px;
}

.block-text{
  font-size: 30px;
  font-weight: 700;
}

.block-content .content{
  display: none;
  background: #fff;
  border: 2px solid #eee;
}

.logo img{
  width: 150px;
}

.block-content .content.active{
  display: block;
}

.btn-group-select{
  width: 100%;
}

.btn-group-select button{
   text-align: left;
   font-size: 20px;
   font-weight: 700;
   background-color: #1e7e34;
   border-color: #1e7e34;
   box-shadow: none;
}

.btn-group-select button:hover, .btn-group-select button:active{
   font-weight: 700;
   background-color: #28a745;
   border-color: #28a745;
}

.btn-group-select button.active{
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.swal2-title{
  font-size: 20px !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm{
  background-color: #ff0000 !important;
}

.loading {
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.loading .loading__overlay {
    content: '';
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: wait;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
}
.loading .loading__icon {
    content: '';
    width: 5%;
    height: 5%;
    min-width: 50px;
    min-height: 50px;
    background-image: url('../img/loading-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
}

.border-answer{
  border: 2px solid #fd8100;
  padding: 10px 20px 0px;
  border-radius: 10px;
}

.btn-common{
   font-weight: 700;
}

.dieukien{
  min-height: 300px;
  font-size: 20px;
}

.border-answer{
  display: none;
}


.border-answer.active{
  display: block;
}

.content-3 p{
  font-size: 20px;
}

.content-3 input.vAccount{
  width: 300px;
  border-color: #28a745 !important;
}

input.vKhac{
  border-color: #28a745 !important;
  font-weight: 700;
  font-size: 18px;
}

.block-8 p{
  font-size: 18px;
  font-weight: 700;
}

.vote{
    position: absolute;
    left: 50%;
    top: 8%;
    background: #fff;
    height: 50px;
    padding: 10px;
    margin: auto;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
}

.swal2-title{
  font-size: 20px !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background-color: #28a745 !important;
}

.progress-bar{
  background-color: #28a745;
  color: #495057;
}

.progress{
  font-size: 17px;
  height: 25px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  body {
    background-size: unset;
  }

  body .main {
    background-image: url('../img/mobile/bg.png');
    width: 100%;
    height: 1014px;
  }  

  .list-menu {
      margin-top: -20px;
  }

  .main .menu{
    padding-top: 240px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .block-content {
      padding: 10px 5px;
  }

  .block-content-firt{
    padding: 0px 15px;
  }
  
  .block-text{
    font-size: 18px;
    font-weight: 700;
  }

  .content{
    padding: 0px 0px;
  }

  .dieukien{
    font-size: 15px;
    padding: 0px 20px;
  }


  .swal2-title {
      font-size: 18px !important;
  }

  .logo img {
    width: 100px;
  }

  .vote {
    left: 38%;
    top: 5px;
    font-size: 16px;
    height: 37px;
    padding: 7px;
  }

  .border-answer {
    margin-top: 20px;
  }

  .main .menu button{
    height: 50px;
  }

  .block-8 p{
    font-size: 16px;
  }

  div:where(.swal2-container) .swal2-html-container{
    margin: 15px !important;
  }

}

@media (max-width: 560px) {
  body .main {
    height: 590px;
  }
  .main .menu{
    padding-top: 200px;
  }
}

@media (max-width: 425px) {
  body .main {
    height: 578px;
  }
  .main .menu{
    padding-top: 190px;
  }
}

@media (max-width: 395px) {
  body .main {
    height: 549px;
  }
  .main .menu{
    padding-top: 170px;
  }

  .btn-group-select button{
    font-size: 17px;
  }
  .check{
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  body .main {
    height: 527px;
  }

  .main .menu{
    padding-top: 163px;
  }  
}

@media (max-width: 360px) {
  body .main {
    height: 506px;
  }
}

@media (max-width: 300px) {
  .content-3 input {
    width: 200px;
  }
}







