/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

.hide{
  display: none;  
}

.wp_loan_cal_clearfix{
   clear: both;
   width: 100%;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

select::-ms-expand {
    display: none;
}

select{
    -webkit-appearance: none;  /*Removes default chrome and safari style*/
    -moz-appearance: none; /* Removes Default Firefox style*/
        appearance:none;
}

/* ==========================================================================
   Main Wrapper
   ========================================================================== */

.wp_wellington_loan_cal_main_wrapper .col_box{
	width: 100%;
}

.wp_wellington_loan_cal_main_wrapper .col-1, .wp_wellington_loan_cal_main_wrapper .col-2 {
    width: 100%;
}

.wp_wellington_loan_cal_main_wrapper #loan_cal, .wp_wellington_loan_cal_main_wrapper #currency_sel {
    width: 100%;
}


/* ==========================================================================
  Dropdown
   ========================================================================== */

.wp_wellington_loan_cal_main_wrapper .dropdown {
    margin-bottom: 10px;
}

.wp_wellington_loan_cal_main_wrapper .dropdown select {
    border: 1px solid #000;
    width: 100%;
    padding: 10px 10px;
    font-family: FontAwesome, sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-apperance: none;
    -o-apperance: none;
}

.wp_wellington_loan_cal_main_wrapper  .sel-dropdown{
   position: relative;
}

.wp_wellington_loan_cal_main_wrapper .sel-dropdown::after {
    content: "\f0d7" !important;
    position: absolute !important;
    font-family: FontAwesome, sans-serif !important;
    right: 15px !important;
    bottom: 10px;
	pointer-events: none;
}


/* ==========================================================================
  Amount Slider
   ========================================================================== */


.wp_wellington_loan_cal_main_wrapper  .how-much-label, .wp_wellington_loan_cal_main_wrapper .total_amount, .wp_wellington_loan_cal_main_wrapper  .total_duration {
  float: left;
  width: 50%;
}

.wp_wellington_loan_cal_main_wrapper .total_amount{
  text-align: right;
}


.wp_wellington_loan_cal_main_wrapper input[type='range']{
  border: none;
  padding: 0;
  width: 100%;
  margin: 0;
}


.wp_wellington_loan_cal_main_wrapper .currency-label{
	font-family: fontAwesome, sans-serif;	
  width: auto;
}



/* ==========================================================================
   Duration Slider
   ========================================================================== */


.wp_wellington_loan_cal_main_wrapper .total_duration {
    display: block;
    float: right;
    margin-top: 0px;
    width: 50%;
    text-align: right;
}

.wp_wellington_loan_cal_main_wrapper .total_duration input{
  padding: 0;
}

#months_years {
    padding-left: 8px;
}


.wp_wellington_loan_cal_main_wrapper #loan_amount {
    /* float: left; */
    border: 0px solid #000;
    /* padding: 1px 0px;*/
    font-weight: bold;
    width: 55px;
    text-align: right;
    background: #fff;
}



.wp_wellington_loan_cal_main_wrapper #years, .wp_wellington_loan_cal_main_wrapper #months {
    /* float: left; */
    border: 0px solid #000;
    font-weight: bold;
    width: 16px;
    background: #fff;
    margin: 0 0 0 0;
}

/* ==========================================================================
   Apr Box
   ========================================================================== */

.wp_wellington_loan_cal_main_wrapper .typical_apr {
    display: block;
    width: 100%;
    border: 1px solid #000;
    height: 50px;
 }
  

.wp_wellington_loan_cal_main_wrapper .typical_apr p {
    padding: 14px 0;
    margin: 0;
}

/* ==========================================================================
   Repayment Summary
   ========================================================================== */

.wp_wellington_loan_cal_main_wrapper .row {
    display: table;
    clear: both;
    width: 100%;
    overflow: hidden;
    background: #ccc;
}

.wp_wellington_loan_cal_main_wrapper .row .total {
    width: 33.333%;
    float: left;
    padding: 0;
    position: relative;
}

.wp_wellington_loan_cal_main_wrapper .row .total p {
    margin: 0 auto 0px auto;
}


.value-wrapper {
  width: 100%;
  text-align: center;
  margin: 0px auto;
  position: relative;
}

.wp_wellington_loan_cal_main_wrapper .row .total input {
    background: #ccc;
    border: none;
    font-size: 12px;
    color: #000;
    display: inline-block;
    text-align: center;
    padding: 0;
}

.wp_wellington_loan_cal_main_wrapper .row .total:last-child{
	padding-right: 0;	
}

.wp_wellington_loan_cal_main_wrapper .row .total .currency-label {
    padding-top: 0px;
    font-size: 12px;
    float: none;
    position: absolute;
    top: 5px;
}

.wp_wellington_loan_cal_main_wrapper .apply {
    background: #1A1A1A;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    height: 50px;

}

.wp_wellington_loan_cal_main_wrapper .apply p {
    padding: 14px 0;
    margin: 0;
}

/* ==========================================================================
   Loan Enquiry Form
   ========================================================================== */

.wp_wellington_loan_cal_main_wrapper .error {
    margin: 14px 0;
    background: #D64646;
    color: #fff;
    padding: 20px 20px;
    -webkit-animation: fadeInUp 0.4s ease;
    animation: fadeInUp 0.4s ease;
    animation-fill-mode: forwards;
   -webkit-animation-fill-mode: forwards;
}

.wp_wellington_loan_cal_main_wrapper .success{
  margin: 14px 0;
  background: #41AD49;
  color: #fff;
  padding: 20px 20px;
  -webkit-animation: fadeInUp 0.4s ease;
  animation: fadeInUp 0.4s ease;
  animation-fill-mode: forwards;
 -webkit-animation-fill-mode: forwards;
}

.wp_wellington_loan_cal_main_wrapper .success p, .wp_wellington_loan_cal_main_wrapper .error p{
  margin: 0 auto;
  color: #fff;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation: fadeInUp 0.4s ease;
    animation: fadeInUp 0.4s ease;
    animation-fill-mode: forwards;
   -webkit-animation-fill-mode: forwards;
}



@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
  animation-fill-mode: forwards;
   -webkit-animation-fill-mode: forwards;
}


@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation: fadeOut 0.3s ease;
   animation: fadeOut 0.3s ease;
   animation-fill-mode: forwards;
   -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation: fadeOutDown 1s ease;
  animation: fadeOutDown 1s ease;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}


/* ==========================================================================
    Pop up - index.html
========================================================================== */

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -moz-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -moz-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation: zoomIn .6s ease;
  -moz-animation: zoomIn .6s ease;
          animation: zoomIn .6s ease;
  -webkit-animation-fill-mode:both;
  -moz-animation-fill-mode:both;
  -ms-animation-fill-mode:both;
  -o-animation-fill-mode:both;
  animation-fill-mode:both;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -moz-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -moz-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation: zoomOut .6s ease;
  -moz-animation: zoomOut .6s ease;
          animation: zoomOut .6s ease;
  -webkit-animation-fill-mode:both;
  -moz-animation-fill-mode:both;
  -ms-animation-fill-mode:both;
  -o-animation-fill-mode:both;
  animation-fill-mode:both;
}


.wp_wellington_loan_cal_main_wrapper_pop_up, .create-pop-up {
overflow: auto;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999;
display: none;
}


.wp_wellington_loan_cal_main_wrapper_pop_up .dialog__overlay {
position: fixed;
z-index: 1;
background: rgba(0, 0, 0, 0.6);
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
-webkit-backface-visibility: hidden;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
opacity: 0;
}


.wp_wellington_loan_cal_main_wrapper_pop_up .dialog__content {
    width: 89.6%;
    max-width: 400px;
    background: #fff;
    padding: 0em 0em;
    opacity: 0;
    position: relative;
    right: 0;
    left: 0;
    /* top: 6%; */
    bottom: -6%;
    margin-right: auto;
    margin-left: auto;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .dialog__header{
  clear: both;
    display: table;
    width: 100%;
    margin-bottom: 24px;
    padding: 1em 0em;
    border-bottom: 1px solid #ccc;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .dialog__header h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    display: inherit;
    width: 100%;
    float: left;
    margin: 14px 0 6px 0;
    color: #333;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .action-close {
    /* float: right; */
    text-align: right;
    color: #D4D4D4;
    display: inline-block;
    /* width: 50%; */
    /* margin-top: -1px; */
    position: absolute;
    top: 13px;
    right: 14px;
    cursor: pointer;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .dialog__content__wrapper{
    padding: 0 2em 2em 2em;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .form_info{
  font-weight: 100;
    font-size: 15px;
    text-align: left;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .submit button {
    background: #b0953a;
    color: #fff;
    text-align: center;
    margin-top: 38px;
    padding: 13px 0;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: block;
    width: 35%;
    border: none;
    max-width: 173px;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .enquiry_row{
  margin-bottom: 5px;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .enquiry_row .label {
    font-size: 13px;
    display: block;
    color: #000000;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .enquiry_row input {
    /* display: block; */
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    vertical-align: middle;
    background-color: #E8E8E8;
    background-image: none;
    border: 0px solid #cccccc;
    border-radius: 0px;
    margin-bottom: 10px;
    outline: none;
}



.wp_wellington_loan_cal_main_wrapper_pop_up .form_info {
    font-weight: 100;
    font-size: 15px;
    text-align: left;
    margin-bottom: 24px;
}

.wp_wellington_loan_cal_main_wrapper_pop_up .loan_enquiry_form {
  overflow: hidden;
}




/*.wp_wellington_loan_cal_main_wrapper .col_box:after{
content:" ";
display: table;
clear: both;
}

.wp_wellington_loan_cal_main_wrapper .col {
float: left;
padding: 0 0%;
min-height: 1px;
margin: 0;
min-height: 267px;
overflow: hidden;
}

.wp_wellington_loan_cal_main_wrapper #loan_cal, .wp_wellington_loan_cal_main_wrapper #currency_sel {
  width: 90%;
  /* max-width: 460px; */
}

/*.wp_wellington_loan_cal_main_wrapper .col-1 {
    width:55%;
}

.wp_wellington_loan_cal_main_wrapper .col-2 {
  width: 45%;
}*/