/* Button CSS */
.btn {
    padding: calc(4px + (12 - 4) * ((100vw - 320px) / (1920 - 320))) calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-sm{
	font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
	padding: calc(2px + (6 - 2) * ((100vw - 320px) / (1920 - 320))) calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
}
.btn-md {
	font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
	padding: calc(3px + (10 - 3) * ((100vw - 320px) / (1920 - 320))) calc(8px + (16 - 8) * ((100vw - 320px) / (1920 - 320)));
}
.btn-primary, .continuevalidate {
    background: var(--bsc-theme1);
    border-color: var(--bsc-theme1);
    border-width: 2px;
    position: relative;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
   color: var(--bsc-white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .continuevalidate:hover, .continuevalidate:focus, .continuevalidate:active {
    background: var(--bsc-theme2);
    border-color: var(--bsc-theme2);
    box-shadow: none;
    color: #FFF !important;
}
.btn-primary:active:focus {
	box-shadow: none;
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--bsc-theme2);
    border-color: var(--bsc-theme2);
}
.btn-secondary {
	background-color: transparent;
	border-color: var(--bsc-theme2);
	color: var(--bsc-theme2);
	border-width: 2px;
    position:relative;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
	color: #fff;
	background-color: var(--bsc-theme2);
	border-color: var(--bsc-theme2);
	box-shadow: none;
}
.btn-transparent {
	background-color: transparent;
	border: none;
	color: var(--bsc-theme2);
	padding: 11px 0;
}
.btn-transparent:hover, .btn-transparent:focus, .btn-transparent:active {
	color: var(--bsc-black2);
	background-color: transparent;
	border: none;
	box-shadow: none;
}
.new-customer-box .btn.guest-register:hover, .new-customer-box .btn.guest-register:focus {
    border-color: #FFF;
}
/* Button CSS */

/* Form CSS */
.form-control {
    padding: 9px 12px;
    border-radius: 4px;
    border-color: var(--bsc-semilight);
}
.form-group.store-form-style .control-label {
    pointer-events: none;
    position: absolute;
    transform: translate3d(16px, 8px, 0) scale(1);
    transform-origin: left top;
    transition: 240ms;
    opacity: 0.5;
    margin-bottom: 2px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.form-group.store-form-style.focused .control-label {
	opacity: 1;
	transform: translate3d(10px, -10px, 0) scale(0.8);
	padding: 0 5px;
	background: var(--bsc-white);
	z-index: 1;
}
.form-group.focused .form-control:focus{
	border:1px solid var(--bsc-theme2);
}
.form-control:focus{
	border-color: #0B1C39;
	box-shadow: none;
}
.readonly-value {
	padding: 9px 12px;
	border-radius: 4px;
	border: solid 1px var(--bsc-semilight);
	display: block;
	width: 100%;
	font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
outline: 0;
word-wrap: break-word;
}
.readonly-value:focus {
    border: solid 1px var(--bsc-theme2);
}
select.form-control {
    background-image: url(../images/download.svg);
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: right 10px center;
}
/* Form CSS */


/*Basic Radio and Checkbox styles*/
.control, .item-radio .pull-left{
  display: block;
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
}
.control label {
	padding-left: 25px;
}
  /* Hide default browser input*/
.control  input[type="checkbox"], .control input[type="radio"], .item-radio .pull-left input[type="radio"]{
    position: absolute;
    z-index: -1;
    opacity: 0;
}    

/* Custom control*/
.control__indicator, .item-radio .pull-left label span{
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
  width: calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
  background: var(--bsc-white);
  border:solid 1px var(--bsc-semilight);
  z-index: -1;
}
.control__indicator::after, .item-radio .pull-left label span::after {
    content: '';
    position: absolute;
    display: none;
}  
.control input:checked ~ .control__indicator, .item-radio .pull-left input:checked ~ label span{
    background: var(--bsc-theme2);
    border-color: var(--bsc-theme2);
}
.control-checkbox .control__indicator::after {
    left: calc(3px + (5 - 3) * ((100vw - 320px) / (1920 - 320)));
    top: 1px;
    width: 4px;
    height: calc(7px + (9 - 7) * ((100vw - 320px) / (1920 - 320)));
    border: solid var(--bsc-white);
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control input:checked ~ .control__indicator::after {
	display: block;
}
.control.control--radio .control__indicator, .item-radio .pull-left label span {
    border-radius: 50%;
}
.item-radio .pull-left label {
	padding-left: 25px;
}
/*Basic Radio and Checkbox styles*/

/* Start min-width:1921px */
@media (min-width:1921px){
    .btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    .btn-sm{
        font-size: 12px;
        padding: 6px 12px;
    }
    .btn-md {
        font-size: 14px;
        padding: 10px 16px;
    }
    .form-group.store-form-style .control-label {
        font-size: 16px;
    }
    .readonly-value {
        font-size: 16px;
    }
    .control__indicator, .item-radio .pull-left label span{
      height: 15px;
      width: 15px;
    }
    .control-checkbox .control__indicator::after {
        left: 5px;
        height: 9px;
    }
}
/* End min-width:1921px */

/* Start max-width:575px */
@media (max-width:575px){
.btn {
	text-transform: none;
}

}
/* End max-width:575px */