/****************************************************************************************************
Radio Button and Checkbox css start here
****************************************************************************************************/


.textfield {
    background: #373737;
    font-size: 13px;
    color: #fff;
    border: 1px solid #373737;
    padding: 10px 10px;
    width: 100%;
}
.textfield::placeholder {
    color: #fff;
}
@media (prefers-reduced-motion: reduce) {
    .textfield {
        transition: none;
    }
}
.textfield[type="file"] {
    overflow: hidden;
}
.textfield[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.textfield:focus {
    border-color: #f8b936;
    outline: 0;
}
.textfield-select {
    padding: 10px 35px 10px 10px;
    font-size: 13px;
    color: #fff;
    background-color: #373737;
    border: 1px solid #373737;
    width: 100%;
}
@media (prefers-reduced-motion: reduce) {
    .textfield-select {
        transition: none;
    }
}
.textfield-select:focus {
    border-color: #f8b936;
    outline: 0;
}


.form-control {
    font-size: 13px;
    color: #616161;
    border: 1px solid #DFE6EA;
    padding: 10px 10px;
    border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #000;
    outline: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.form-select {
    padding: 10px 35px 10px 10px;
    font-size: 13px;
    color: #616161;
    background-color: #fff;
    border: 1px solid #DFE6EA;
    border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
    .form-select {
        transition: none;
    }
}
.form-select:focus {
    border-color: #000;
    outline: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}




/****************************************************************************************************
Textfield & Button css start here
****************************************************************************************************/
.primarybtn {
  color: #fff;
  font-weight: 400;
  text-align: center;
  line-height: normal;
  border: solid 1px #000;
  background: #000;
  border-radius:5px;
  transition:0.4s;
}
.primarybtn:hover, .primarybtn:focus, .primarybtn.focus {
	text-decoration: none;
	background:#272727;
    border: solid 1px #272727;
	color: #ffffff;
}
.primarybtnol {
  color: #000;
  font-weight: 400;
  text-align: center;
  line-height: normal;
  border: solid 1px #000;
  background: transparent;
  border-radius:4px;
  transition:0.4s;
}
.primarybtnol:hover, .primarybtnol:focus, .primarybtnol.focus {
	text-decoration: none;
	background:#000;
	color: #fff;
}
.secondrybtn {
  color: #000;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  border: solid 1px #f8b936;
  background: #f8b936;
  border-radius:5px;
  transition:0.4s;
}
.secondrybtn:hover, .secondrybtn:focus, .secondrybtn.focus {
    text-decoration: none;
    background:#c08f25;
    border: solid 1px #c08f25;
    color: #000;
}
.secondrybtnol {
  color: #f8b936;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  border: solid 1px #f8b936;
  background: transparent;
  border-radius:4px;
  transition:0.4s;
}
.secondrybtnol:hover, .secondrybtnol:focus, .secondrybtnol.focus {
	text-decoration: none;
	background:#f8b936;
	color: #000;
}
.btnsm {
	font-size: 13px;
	padding: 8px 12px;
}
.btnmd {
	font-size: 14px;
	padding: 10px 15px;
}
.btnlg {
	font-size: 15px;
	padding: 12px 20px;
}
.btnsmfullwidth {
	width: 100%;
    font-size: 13px;
    padding: 8px 10px;
}
.btnmdfullwidth {
	width: 100%;
    font-size: 14px;
    padding: 10px 10px;
}
.btnlgfullwidth {
	width: 100%;
    font-size: 15px;
    padding: 12px 10px;
}
.whitebtnol {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    border: solid 1px #fff;
    background: none;
    border-radius:4px;
    transition:0.4s;
    padding: 10px 15px;
}
.whitebtnol:hover, .whitebtnol:focus, .whitebtnol.focus {
    text-decoration: none;
    background: #fff;
    color: #000;
}



@media screen and (max-width : 480px) {



}