

/* -checkbox-model- */
.checkbox-model {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 3px;
    font-size: 12px;
    flex-shrink: 0;
    position: relative;
  }
  .checkbox-model::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    border-radius: inherit;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  }
  .checkbox-model::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    height: 100%;
    width: 100%;
    position: absolute;
    background: var(--theme__color1);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size:inherit;
    border-radius: inherit;
    opacity: 0;
    transition: 0.3s;
  }
  .checkbox-model:checked::after {
    opacity: 1;
  }

/* default-box */
.default-box {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.11);
}

/* small-tools */
.underline {
    text-decoration: underline !important;
}
.h-initial {
    height: initial !important;
}
.space-nowrap {
    white-space: nowrap;
}
.hidden-scroll {
    overflow-y: auto !important;
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}
.hidden-scroll::-webkit-scrollbar {
    display: none !important;
}
.pseudo-before-none::before {
    display: none !important;
}
.pseudo-after-none::after {
    display: none !important;
}
.pseudo-none::before,
.pseudo-none::after {
    display: none !important;
}



.flip {
    transform: rotateY(180deg);
}
.flip-x {
    transform: rotateX(180deg);
}
.rotate1_8 {
    transform: rotate(45deg) !important;
}
.rotate2_8 {
    transform: rotate(90deg) !important;
}
.rotate3_8 {
    transform: rotate(135deg) !important;
}
.rotate4_8 {
    transform: rotate(180deg) !important;
}
.rotate5_8 {
    transform: rotate(225deg) !important;
}
.rotate6_8 {
    transform: rotate(270deg) !important;
}
.rotate7_8 {
    transform: rotate(315deg) !important;
}
.rotate8_8 {
    transform: rotate(360deg) !important;
}


/* bg */
.bg-theme1 {
    background: var(--theme__color1) !important;
}
.bg-theme2 {
    background: var(--theme__color2) !important;
}
.bg-theme3 {
    background: var(--theme__color3) !important;
}
.bg-theme4 {
    background: var(--theme__color4) !important;
}

/* hover--bg */
.hover-bg-theme1:hover {
    background: var(--theme__color1) !important;
}
.hover-bg-theme2:hover {
    background: var(--theme__color2) !important;
}
.hover-bg-theme3:hover {
    background: var(--theme__color3) !important;
}
.hover-bg-theme4:hover {
    background: var(--theme__color4) !important;
}


/* fonts */
.font1 {
    font-family: var(--font1);
}
.font2 {
    font-family: var(--font2);
}
.font3 {
    font-family: var(--font3);
}
.font4 {
    font-family: var(--font4);
}


/* text-color */
.color-white {
    color: #fff !important;
}
.color-text {
    color: var(--text__color1) !important;
}
.color-theme1 {
    color: var(--theme__color1) !important;
}
.color-theme2 {
    color: var(--theme__color2) !important;
}
.color-theme3 {
    color: var(--theme__color3) !important;
}
.color-theme4 {
    color: var(--theme__color4) !important;
}


/* text-align */
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.text-justified {
    text-align: justify !important;
}


/* font-weights */
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600{
    font-weight: 600!important;
}
.fw-700 {
    font-weight: 700 !important;
}
.fw-800{
    font-weight: 800!important;
}



/* nice-select-edit */
.nice-select {
    height: initial;
    min-height: initial;
    line-height: 1;
    padding: 0 20px 0 0;
    float: none;
    display: inline-block;
    border: none;
}
.nice-select:after {
    margin-top: -2px;
}
.nice-select .list .option,
.nice-select.open .list .option {
    font-size: 16px;
    line-height: initial;
    min-height: initial;
    padding: 13px 15px;
    min-width: 50px;
}
.nice-select .option.selected {
    font-weight: inherit;
}
.nice-select .list {
    border-radius: 2px;
    min-width: 100%;
}

@media (max-width: 767px) {
    .nice-select .list .option,
    .nice-select.open .list .option {
        font-size: 16px;
        line-height: initial;
        min-height: initial;
        padding: 8px 12px;
        min-width: 50px;
    } 
}


/* dropzon */
.dropzone{
position: relative;
border: 2px dotted rgb(201, 201, 201);
border-radius: 6px;
min-height: 155px;
}
.dropzone .dz-message {
    display: none !important;
}

.dropzone.dz-started {
    
}
.dropzone.dz-started .custom-design {
    opacity: 0;
}

.dropzone .custom-design {
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
}
.dropzone .custom-design .button {
	margin: 0 0 20px;
	padding: 8px 20px;
	border-radius: 40px;
	width: 100%;
	max-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--theme__color1);
	transition: 0.3s;
}
.dropzone:hover .custom-design .button {
    background: var(--theme__color1) !important;
    color: #fff;
}
.dropzone .custom-design .button .upload-icon {
    width: 20px;
    margin: 0 13px 0 0;
    transition: 0.3s;
}
.dropzone:hover .custom-design .button .upload-icon path {
    fill: #fff;
}
.dropzone .custom-design p {
font-size: 15px;
font-weight: 400;
color: #7B7B7B;
}
/* dropzon-end */




/* select2 */
.select2 {
    display: block !important;
    flex-grow: 1;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin-left: -13px;
	margin-top: 2px;
    border: none !important;
    transition: 0.3s;
}
.form-model1 .select2-container--default:hover .select2-selection--single .select2-selection__arrow b {
    transform:  none !important;
    transform: translate(0,3px) !important;
}
.form-model1 .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    content: '\f078';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 15px;
    margin-top: 10px;
    height: initial !important;
    width: initial !important;
}
.form-model1 .select2-container--default:hover .select2-selection--single .select2-selection__arrow b:after {
    color: rgb(124, 124, 124);

}
.select2-container {
	max-width: 100%;
    flex-shrink: 1;
    display: block;
}
.results__option--selected {
    background-color: #ddd;
    background-color: #f3f4f5;
}
.select2-dropdown {
    border: 1px solid #aaa;
    border: 1px solid #eee;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: transparent;
    color: #000;
}
.select2-results ul {
    padding: 0 7px;
}
.select2-results ul li {
    padding: 10px 7px !important;
    border-bottom: 1px solid rgb(211, 211, 211) !important;
    background-color: transparent !important;
}
.select2-results ul li:last-child {
    border-bottom: none  !important;
}
.select2-results ul li:hover {
    background-color: transparent;
}
.select2-results__option {
    font-size: 14px;
}
.form-model1 .select2-selection {
	padding: 12px 0 !important;
	border: none !important;
	border-bottom: 1px solid #e2e2e2 !important;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	transition: 0.3s;
	min-height: initial !important;
	height: initial;
	display: block !important;
	min-height: 48px !important;
	border-radius: 0 !important;
	background: transparent;
}
.form-model1 .select2-selection:hover {
    border-color: #000 !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}
.form-model1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: initial !important;
}



/* select2_2 */
.select2_2 ~ .select2 {
    width: 100% !important;
}
.select2_2 ~ .select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	padding: 0 14px;
	height: 50px;
	display: flex;
	align-items: center;
    width: 100%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.09) !important;
    border: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 5px;
}
.form-model2 .select2-container--default .select2-selection--single .select2-selection__arrow b::after {
	content: '\f078';
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	font-size: 15px;
	margin-top: 10px;
	height: initial !important;
	width: initial !important;
    transition: 0.3s;
}
.form-model2 .select2-container--default:hover .select2-selection--single .select2-selection__arrow b::after {
    color: var(--theme__color1) !important;
}



/* important */
#scrollUp {
    background-image: url("../images/base/top.png");
    bottom: 20px;
    right: 20px;
    width: 38px;    /* Width of image */
    height: 38px;   /* Height of image */
    color: transparent;
}