@charset "ISO-8859-1"; 
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

:root{
/*#092032  == > table head */
--clr-y-light-1:#fffbf2;
--clr-y-light-2:#fff0c3; /*RGBA(255,240,195,1)*/
--clr-y-light-3:#ffe494;
--clr-y-light-4:#ffd865;
	--clr-y-primary:#ffc107;  /*RGBA(255,193,7,1)*/
	--clr-y-dark-2:#997304;
	--clr-y-dark-3:#664d02;
	
	--cly-b-dark:#0745ff; /* RGBA(7,69,255,1) */
	--clr-b-dark-2:#042999;
	
	--clr-green:#07ff45;
	--clr-d-green:#516171;
	--trip-title-clr:#333;
	
	--lr-clr:#516171;
	
	--clr-white:#ffffff;
	--clr-g-light:#f2f2f2;
	--clr-g-dark:#333;
	
	
	--succuess-clr:#4F8A10;
	--succuess-bg:#DFF2BF;
	
	--error-clr: #D8000C;
	--error-bg: #FFBABA;
	--info-clr:#00529B;
	--info-bg:#BDE5F8;
	--link-clr:#0d6efd;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
/*   outline: 1px solid red; */ 
}
html {
	/* font-size: 10px; */
	/* 10px / 16px = 0.625 = 62.5% */
	/* Percentage of user's browser font-size setting */
	font-size: 62.5%;
	box-sizing: border-box;
	/*max-width:100%;	 */
	 width:100%;
	 height:100vh; 
 scroll-behavior: smooth;
 /*overflow-x:hidden;*/
} 
body {
  font-family: "Barlow", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  color: #516171;
   font-size:1.6rem;
   letter-spacing: 1px;
 /* overflow-x:hidden;*/
}
.fullWidth-container {
	grid-column: full-start/full-end;
	background-color: var(--clr-y-light-1);
	display: grid;
	grid-template-rows: max-content;
	grid-template-columns: [full-start] minmax(6rem, 1fr)[center-start] repeat(9, [ col-start ] minmax(min-content, 14rem)[col-end])[center-end]
			 minmax(6rem, 1fr)[full-end];
min-height:95vh;

}
.footer-area,
.header-area {
	grid-column: full-start/full-end;
}
h1{
	font-size:3.2rem;
}
h2{
	font-size:2.4rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
 /* color: #092032;*/
/*  color: #516171;*/
	color:#042999;
}
a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 500;
}
img {
  width: 100%;
}
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-clr{
	background-color:var(--clr-primary);
}

/***************************************/

.success-popup {
	position: fixed;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid var(--succuess-clr);
	border-left: 1rem solid var(--succuess-clr);
	border-radius: 1rem;
	color: var(--succuess-clr);
	background-color:var(--succuess-bg);
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.error-popup button,
.success-popup button {
	float: right;
	margin-top: 5px;
}

.success-tick {
	width: 3rem;
	height: 3rem;
	margin-right: 1rem;
}

.close-success {
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	margin-left: 1rem;
}
.error-popup{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid var(--error-clr);
	border-left: 1rem solid var(--error-clr);
	border-radius: 1rem;
	color: var(--error-clr);
	background-color:var(--error-bg);
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
.error{
  color:var(--error-clr);
  background-color:var(--error-bg);
  display: inline-block;
  padding:0 .5rem;
  font-size: 12px;
  line-height: 15px;
  margin: 5px 0 0;
}
.error-login{
  color:var(--error-clr);
 /* background-color:var(--error-bg);*/
  display: inline-block;
  padding:0 .5rem;
  font-size: 1.5rem;
  line-height: 15px;
  margin: 5px 0 0;
}
.info{
	background-color:var(--info-bg);
	color:var(--info-clr);
	
}

/*****************************/
/***btn***/

.disabled{
	opacity: 0.3;
	cursor:not-allowed;
}

.btn {
	border: none;
	background-color: rgba(211, 211, 211, 0.05);
	cursor:pointer;
}

.btn-2{
	background-image: linear-gradient(to right, #006db5 0%, #24A0ED 51%, #006db5 100%);
	color:#fff;
	border:none;
	border-radius:.4rem;
	padding:.4rem .8rem;
	cursor:pointer;
	font-size:.8rem;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
}

.btn-3{
	background-image: linear-gradient(to right, #ffc107 0%, #997304 55%, #ffc107 100%);
	margin-top: 2rem;
	margin-left: 1.5rem;
	padding: .7rem 2rem;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: #fff;
	cursor: pointer;
	border: 1px solid var(--clr-g-dark);
	box-shadow: 0 0 20px #eee;
	border-radius: 10px;
	display: block;
	float: right;
	font-size: 1.3rem;
}

.btn-grad {
	background-image: linear-gradient(to right, #997304 0%, #ffc107 51%, #997304 100%);
	margin-top: 2rem;
	padding: 1rem 2rem;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: #fff;
	cursor: pointer;
	border: 1px solid var(--clr-g-dark);
	box-shadow: 0 0 20px #eee;
	border-radius: 10px;
	display: block;
	float: right;
}
.btn-2:hover,
.btn-3:hover,
.btn-grad:hover {
	background-position: right center;
	/* change the direction of the change here */
	color: #fff;
	text-decoration: none;
}

.cancel-btn{
  background: #FF4742;
  border: 1px solid #FF4742;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #FFFFFF;
 /* cursor: pointer;*/
  display: inline-block;
  font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
  font-size: 1.2rem;
  /*font-weight: 800;*/
 /* line-height: 16px;
  min-height: 40px;*/
  outline: 0;
  padding: .6rem 1rem;
  text-align: center;
 /* text-rendering: geometricprecision;*/
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  margin-top:2rem;
}

.cancel-btn:hover,
.cancel-btn:active {
  background-color: initial;
  background-position: 0 0;
  color: #FF4742;
}

.cancel-btn:active {
  opacity: .5;
}
.centered{
	text-align:center;
}
.flex{
	display:flex;
	align-items:center;
	justify-content:space-around;
}
.flex-center{
	display:flex;
	align-items:center;
	justify-content:center;
}
.flex-between{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.table-icon{
	background-size: cover;
  background-position: center;
  color: transparent;
  text-align: center;
  padding: 0;
  border: none;
  border-radius:1rem;
  cursor: pointer;
  width:2rem;
  height:2rem;
}
.updateicon{
	background-image: url('/images/update-b.png');
 }
.confirmIcon{
	background-image: url('/images/thumbs-up.png');
 }
.deleteIcon{
	background-image: url('/images/delete-48.png');
}
.send-email{
	background-image: url('/images/send-email.png');
}
.startIcon{
	background-image: url('/images/start.png');
}


/*********************/
@media only screen and (max-width: 37.5em) {
	/** 600 / 16 = 37.5 **/
	.success-popup {
	font-size:1.2rem;
	left: 20%;
	transform: translate(-20%, -50%);
		padding: .5rem;
	}

.success-tick {
	width: 1.5rem;
	height: 1.5rem;
	}

.close-success {
	width: 1.5rem;
	height: 1.5rem;
	}
}
