/**
*****************************************
	Theme Name: Laboratory
	Author: SyncZer Inc
	Author URL: https://www.synczersolutions.com/
	Version: 1.0
******************************************
**/

/*-- Fonts --*/
@font-face{
	font-family: 'font-1';
	src: url("../fonts/poppins/Poppins-Regular.ttf");
}
@font-face{
	font-family: 'font-2';
	src: url("../fonts/poppins/Poppins-Bold.ttf");
}
@font-face{
	font-family: 'font-3';
	src: url("../fonts/barlow/Barlow-Regular.ttf");
}
@font-face{
	font-family: 'font-4';
	src: url("../fonts/barlow/Barlow-Bold.ttf");
}
/*-- Colors --*/
:root {
	--white: #fff;
    --black: #000;
	--main-1: #23477e;
    --main-2: #266fa9;
    --main-3: #ff2200;
    --main-4: #6e6e6e;
	--gr-1: linear-gradient(90deg, rgba(0,0,0,0.38) 0%, rgba(255, 255 ,255,0.04) 100%);
	--gr-2: linear-gradient(141deg, rgb(0 190 198 / 73%) 0%, rgba(0,0,0,0.4) 100%);
	--gr-3: linear-gradient(90deg, rgb(0 190 198 / 38%) 0%, rgb(255 72 0 / 40%) 100%);
	--shadow-1: rgba(3, 11, 33, 0.78);
}

body {
    font-family: 'font-1';
    font-weight: normal;
    font-style: normal;
    scroll-behavior: smooth;
}
.table,
.table-cell {
    display: table;
    height: 100%;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
}
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
a,
button,
.btn,
span.btn1 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.btn {
    border-radius: 0px;
}
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}
a:focus,
a:hover {
    text-decoration: none;
}
a,
button,
input {
    outline: medium none;
}
button:focus,
.form-control:focus,
.custom-file-input:focus~.custom-file-label{
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
	border-color: transparent;
	box-shadow: none;
}
.form-control:focus,.custom-file-input:focus~.custom-file-label{
    border-color: var(--main-2);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
	box-shadow: 0 0 0 30px white inset !important;
}
.uppercase {
    text-transform: uppercase
}
.capitalize {
    text-transform: capitalize
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-style: normal;
    font-family: font-2;
}
p {
    font-weight: normal;
    font-size: 0.95rem;
    font-family: font-1;
	color: #666;
}
a,
a h1,
a h2,
a h3,
a h4,
a h5,
a h6 {
    color: #000;
}
ul {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none
}
label {
    font-size: 0.9rem;
    font-weight: 400;
}
*::-moz-selection {
    text-shadow: none;
}
::-moz-selection {
    text-shadow: none;
}
::selection {
    text-shadow: none;
}

/*************************
    Input
*************************/
input {
    background: transparent none repeat scroll 0 0;
    box-shadow: none;
}
select {
    box-shadow: none;
}
input:focus {
    background: transparent;
}
textarea {
    resize: vertical;
    padding: 10px;
    width: 100%;
}
textarea:focus {
    background: transparent;
    outline: none;
}
::-moz-placeholder {
    font-size: 13px;
}
.o-hidden{
    overflow: hidden;
}
.bg-color{
	background-color: var(--main-2) !important;
}
.bg-color-1{
    background: var(--main-1);
}
.text-color{
	color: var(--main-2);
}
.text-color1{
	color: var(--main-1);
}
.tag-lable{
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -.5px;
    color: var(--main-2);
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
	margin-bottom: 0.5rem;
	display: block;
}

/* =================================== */
/*  Back Button
/* =================================== */
#back_button {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    position: fixed;
    bottom: 40px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    background: rgba(0,64,164,0.55);
    color: var(--main-1);
    border: 1px solid var(--white);
    border-radius: 10px;
}
#back_button.show {
    visibility: visible;
    background-color: transparent;
    opacity: 1;
    cursor: pointer;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    border: 1px solid var(--white);
}
#back_button::after {
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    font-size: 1.2em;
    line-height: 16px;
    padding: 11px;
    color: var(--white);
}
.popover {
    left: 10% !important;
}
