@font-face {
    font-family: 'HeadFont';
    src: url('/fonts/Fredoka_SemiExpanded-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BodyFont';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FormFont';
    src: url('/fonts/Fredoka-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.head-font {
    font-family: HeadFont;	
}

.form-font {
    font-family: FormFont;	
}

.body-font {
    font-family: BodyFont;	
}

.not_black_color {
    color: rgb(88, 89, 91);
}

.grey_color, .grey_color .form-control {
    color: rgb(166, 166, 166) !important;
}

.text-center {
    text-align: center;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-bottom-20 {
    margin-botton: 20px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.controls-holder {
    width: 130px;
    float: left;
}

.input-holder {
    width: calc(100% - 135px);
    float: left;
}

.pass-input {
    font-size: 24px;
    height: 49px;
    padding: 7px 10px;
    letter-spacing: 1px;
    color: #e5e5e5;
    background-color: transparent;
    border-width: 0px 0px 2px 0px;
    border-radius: 0px;
    border-color: #e5e5e5;
    outline: none !important;
    box-shadow: none;
}

.pass-input:focus {
    font-size: 24px;
    height: 49px;
    padding: 7px 10px;
    letter-spacing: 1px;
    color: #e5e5e5;
    background-color: transparent;
    border-width: 0px 0px 2px 0px;
    border-radius: 0px;
    border-color: #e5e5e5;
    outline: none !important;
    box-shadow: none;
}

.pass-input:disabled, .pass-input[readonly] {
    background-color: transparent !important;
    opacity: 1;
}

.quazi-button {
    cursor: pointer;
    position: relative;
    top: 4px;
}

.gen-pass {
    
}

#pass-strength {
    width: 100%;
    font-size: 21px;
    padding: 1px 0px;
    color: #e5e5e5;
    letter-spacing: 2px;
}

.main-pass-block {
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 5px;
    background-color: grey;
}

.secondary-pass-block {
    margin: -1px 40px 0px 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid grey;
}

.main-checkbox {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.label {
    font-size: 18px;
    position: relative;
    bottom: 6px;
}

.length-input {
    width: 60px !important;
    display: inline-block;
}

.length-input:focus {
    border: 1px solid grey;
}

/* Chrome, Safari, Edge, Opera */
input.length-input::-webkit-outer-spin-button,
input.length-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.length-input[type=number] {
  -moz-appearance: textfield;
}


.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: green; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: green; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.no-outline:focus {
    outline: none !important;
    box-shadow: none;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}