/* ========================================================================== *\
   BREAKPOINTS
\* ========================================================================== */

@import "responsive-mobile.css" screen and (max-width: 700px);
@import "responsive-tablet-portrait.css" screen and (min-width:701px) and (max-width:1020px);
@import "responsive-tablet-landscape.css" screen and (min-width:1021px) and (max-width:1240px);

/* ========================================================================== *\
   IMAGE RESIZE
\* ========================================================================== */

img{max-width: 100%; height: auto !important;}
img{ -ms-interpolation-mode: bicubic; }

.reg-form-area.active {
    display: block;
}
.reg-form-area {
    display: none;
}

span.delmail {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: url(images/ico-trash-inactive.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 2.4rem 2.4rem;
    text-indent: -999px;
    overflow: hidden;
    cursor: pointer;
}

span.delmail.current ,
span.delmail:hover {
	background: url(images/ico-trash-active.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 2.4rem 2.4rem;
}

.password-toggle-icon .open{ 
	content: "";
	position:absolute;
	right: 20px;
	top: 18px;
	width: 16px;
	height: 12px;
	background: url('images/eye-open.png');
	background-size: 16px 12px;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 5px;
	cursor:pointer;
}
.password-toggle-icon .close{ 
	content: "";
	position:absolute;
	right: 20px;
	top: 18px;
	width: 16px;
	height: 12px;
	background: url('images/eye-close.png');
	background-size: 16px 12px;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 5px;
	cursor:pointer;
}


.btn.processing {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #A5D581 18%, #C8E6B0 8%, #E2F2D5 23%);
  background-size: 800px 104px;
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0
  }
  100% {
    background-position: 800px 0
  }
}

#progressbar {
  background-color: #A5D581;
  border-radius: 5px;
  padding: 2px;
}

#progressbar>div {
  background-color: #3D6526;
  width: 5%;
  height: 10px;
  border-radius: 4px;
}

.btn.xsmall {
    font-size: 12px;
    line-height: 100%;
    padding: 6px 12px;
    text-transform: none;
	min-width: 60px;
}

.switchlabel {
	cursor: pointer;
	width: 100px;
	height: 50px;
	background: #8BC34A;
	display: block;
	border-radius: 100px;
	position: relative;
}
.switchlabel:hover { background: #8BC34A !important; }
.switchlabel.black{background: #292929; }
.switchlabel.black:hover{background: #292929 !important; }

.autocomplete-suggestions { z-index:99999 !important; margin-left: 0px; font-size:90%; min-width:120px; background:#fff; cursor: pointer; overflow:hidden; }
.autocomplete-suggestion { padding:5px 5px 5px 15px; white-space:nowrap; overflow:hidden;  }
.autocomplete-selected { background:#FDF2F8; }
.autocomplete-suggestions strong { font-weight:normal; color:#D72B7E; }

.mtb15 { margin-top: 15px; margin-bottom: 15px; }
.mt15 { margin-top: 15px; }
.mb15 { margin-bottom: 15px; }
.mt30 { margin-top: 30px; }
.mb30 { margin-bottom: 30px; }
.mt45 { margin-top: 45px; }
.mb45 { margin-bottom: 45px; }
.pt100 { padding-top: 100px; }
.pb100 { padding-bottom: 100px; }
.pt50 { padding-top: 50px; }
.pb50 { padding-bottom: 50px; }
.pt25 { padding-top: 25px; }
.pb25 { padding-bottom: 25px; }