.nice-select {
      width: 100%;
      line-height: 0; }
      .nice-select.form-control {
        padding: 25px 10px; }
      .nice-select .list {
        width: 100%; }
    
    .nice-select::after {
      height: 8px;
      width: 8px; }





      /* The container */
      .confirmation-wrap .container__input {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1.2rem;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      margin-bottom: 1.5rem;
    }
    
    /* Hide the browser's default checkbox */
    .container__input 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;
      background-color: #fff;
    }
    
    /* On mouse-over, add a grey background color */
    .container__input:hover input ~ .checkmark {
      background-color: #ccc;
    }
    
    /* When the checkbox is checked, add a blue background */
    .container__input 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 */
    .container__input input:checked ~ .checkmark:after {
      display: block;
    }
    
    /* Style the checkmark/indicator */
    .container__input .checkmark:after {
      left: 9px;
      top: 5px;
      width: 8px;
      height: 10px;
      border: solid #0C91C5;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }


    /* Confirmation Form */



    .confirmation-wrap{
      background-color: #F2F1F1;
      padding: 6rem 0;
}

.confirmation__header{
      font-size: 2rem;
      color: #000;
      margin-bottom: 3rem;
}

.confirmation__header span{
      font-weight: 700;
}


    .confirmation-wrap button {
	font-size: 1.6rem;
	font-weight: 600;
	background: #0088D2;
	color: #fff;
	padding: .5rem 3rem;
	border: none;
	outline: none;
	transition: all .3s;
}


.confirmation-wrap button:hover {
	background-color: #0088D2;
	color: #fff;
}

.confirmation-wrap .form-control{
      margin-bottom: 1.5rem;
      border: none;
      padding: 1rem 1rem;
      border-radius: 0;
}

.confirmation-wrap input[type="file"]{
      display: none;
}

.confirmation-wrap .form-group{
      position: relative;
}

.confirmation-wrap button.upload{
      position: absolute;
      right: 0;
      height: 100%;
      width: 3rem;
      top: 0;
      padding: 0;
      font-size: 1.4rem;
}