@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Bold.woff2') format('woff2'),
        url('../fonts/EuclidCircularA-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Light.woff2') format('woff2'),
        url('../fonts/EuclidCircularA-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Medium.woff2') format('woff2'),
        url('../fonts/EuclidCircularA-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Semibold.woff2') format('woff2'),
        url('../fonts/EuclidCircularA-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Euclid Circular A';
    src: url('../fonts/EuclidCircularA-Regular.woff2') format('woff2'),
        url('../fonts/EuclidCircularA-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.container{
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.header img{
    max-width: 100px;
}

.specialBoldH1{
	font-weight: bold;
}

.specTop{
	padding-top: 100px;
}

.bannerLogo{
	position: absolute;
	width: 80px;
	z-index:10;
	top: 30px;
}

.bannerLogo a, .bannerLogo img{
	width: 100%;
}

/* Banner container */
.banner-container {
    display: flex;
    min-height: 600px;
    height: 100svh;
    background: linear-gradient(to right, #0a2a7a, #183b86, #254e95, #183b86, #0a2a7a);
    position: relative;
    overflow: hidden;
    padding: 4vh 2vw;
}

#fullFixedDiv{
    position:fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
}

#showContent{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    color: #FFF;
}

#showContent a{
    color: #FFF;
}

.makeBtnStyle{
    background-color: #4c7bbe;
    color: #FFF;
    border: 0;
    padding: 10px;
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
}

.makeBtnStyle:hover{
    opacity: 0.8;
}

.closeDiv{
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
    text-align: right;
    padding: 30px;
}

.copyContentDiv{
    text-align: center;
    margin-top: 40px;
}

#closeDaWinPlz{
    cursor: pointer;
}

/* Background elements - Refactored for better responsiveness */
.gold-shape {
    position: absolute;
    background: linear-gradient(135deg, #e0bf6a, #9f7f01);
    z-index: 1;
    /* Using vw units for responsive sizing based on viewport width */
    width: 60vw;
    height: 80%;
    border-radius: 0 22% 22% 0;
    left: -15vw;
    top: 15%;
    transform: rotate(-15deg);
    /* Add transition for smoother resize behavior */
    transition: all 0.3s ease-in-out;
}

.disclaimer.mobile{
    display: none;
}

.purple-shape {
    position: absolute;
    border: clamp(5px, 1vw, 10px) solid #a64d79;
    z-index: 1;
    /* Using vw units for responsive sizing */
    width: 45vw;
    height: 65%;
    border-radius: 25% 0 0 25%;
    right: -15vw;
    top: 15%;
    transform: rotate(-15deg);
    /* Add transition for smoother resize behavior */
    transition: all 0.3s ease-in-out;
}

/* Text column */
.text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    padding-left: 5%;
    z-index: 2;
    color: white;
}

.main-title {
    font-size: clamp(80px, 10vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    margin-bottom: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.description {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.highlight {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 2em;
}

.main-title,
.subtitle,
.description,
.highlight {
    text-align: center;
}

/* Images column */
.images-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    z-index: 2;
}

.product-images {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.product-sub-images {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}

.product-box {
    width: 500px;
    max-width: 100%;
    height: auto;
    transform: rotate(-20deg);
}

.box-end {
    align-items: flex-end;
    margin-left: 8vw;
}

.contact-lens {
    width: 200px;
    height: auto;
}

/* Logos */
.brand-logo {
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: clamp(16px, 3vw, 26px);
    font-weight: 700;
    color: white;
    z-index: 2;
}

.silmaasema-logo {
    position: absolute;
    right: 5%;
    top: 5%;
    z-index: 2;
/*background: #FFF;
padding: 10px;
  border-radius: 8px;    
    padding-top: 5px;
  padding-bottom: 5px;*/
}

.silmaasema-logo img {
    max-width: 100%;
    height: auto;
}

/* Disclaimer */
.disclaimer {
    width: 100%;
    color: white;
    font-size: clamp(11px, 1.8vw, 12px);
    line-height: 1.5;
    z-index: 2;
    text-align: left;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsive styles - Enhanced for better shape handling */
@media (max-width: 1200px) {

    /* Adjust shapes for large tablets */
    .gold-shape {
        width: 70vw;
        left: -20vw;
    }

    .purple-shape {
        width: 50vw;
        right: -20vw;
    }
}

@media (max-width: 1024px) {
    .banner-container {
		flex-direction: column;
		padding-top: 142px;
		padding-bottom: 200px;
		height: auto;
    }

    .disclaimer.mobile{
        display: flex;
        order: 5;    
    }

    .disclaimer.desktop{
        display: none;
    }    

    .text-column,
    .images-column {
        width: 100%;
        padding: 20px 0;
    }

    .text-column {
        text-align: center;
        order: 1;
        margin-bottom: 5svh;
    }

    .images-column {
        order: 2;
    }

    /* Reposition shapes for tablet view */
    .gold-shape {
        width: 100vw;
        height: 50%;
        left: -30vw;
        top: 5%;
        border-radius: 0 30% 30% 0;
        transform: rotate(-10deg);
    }

    .purple-shape {
        width: 80vw;
        height: 40%;
        right: -30vw;
        top: 60%;
        transform: rotate(-10deg);
    }

    .product-sub-images {
        justify-content: center;
    }

    .product-box {
        width: 300px;
    }

    .box-end {
        margin-left: 0;
    }

    .disclaimer {
        padding-top: 3vh;
    }
}

@media (max-width: 768px) {

	.arrowsAni{
		display: none;
	}

	.wallText{
		font-size: 14px;
	}

	.bannerLogo{
		width: 50px;
		top: 10px;
	}

	.banner-container{
		padding-top: 54px;
		padding-bottom: 63px;
	}

	.highlight{
		margin-bottom: 0;
	}

	.text-column{
		margin-bottom: 20px;
	}

	.silmaasema-logo{
		right: 5%;
		top: 10px;		
	}

	.silmaasema-logo img{
		max-width: 140px;
	}

    /* Further adjust shapes for small tablets */
    .gold-shape {
        width: 120vw;
        height: 40%;
        left: -40vw;
        top: 10%;
        transform: rotate(-5deg);
    }

    .purple-shape {
        width: 100vw;
        height: 30%;
        right: -40vw;
        top: 65%;
        transform: rotate(-5deg);
        border-width: clamp(3px, 0.8vw, 8px);
    }

    .product-box {
        width: 200px;
		padding-bottom: 15px;
    }

    .contact-lens {
        width: 80px;
		display: none;
    }

    .product-sub-images {
        gap: 10px;
    }
}

/*
@media (max-width: 480px) {

    .gold-shape {
        width: 150vw;
        height: 30%;
        left: -50vw;
        top: 15%;
        border-radius: 0 20% 20% 0;
        transform: rotate(-3deg);
    }

    .purple-shape {
        width: 120vw;
        height: 25%;
        right: -50vw;
        top: 70%;
        transform: rotate(-3deg);
        border-width: clamp(2px, 0.6vw, 6px);
    }

    .banner-container {
        padding: 9.6vh 5vw;
    }

    .product-images {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-sub-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-box {
        width: 180px;
    }

    .silmaasema-logo img {
        width: 150px;
    }

}
*/

.superSmall{
	padding-top: 15px;
}

body .arrowsAni {
  position: relative;
  /**/
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  /**/
  width: 20px;
  height: 20px;
  z-index: 100;
}

.arrowsAni:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 6.6666666667px solid rgba(180, 148, 35, 0.7);
  border-bottom: 6.6666666667px solid rgba(180, 148, 35, 0.7);
  transform: translate(13.6666666667px, 53.6666666667px) rotate(-45deg);
  animation: arrowsAni 3s linear infinite;
}

.arrowsAni:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 6.6666666667px solid rgba(255, 255, 255, 1);
  border-bottom: 6.6666666667px solid rgba(255, 255, 255, 1);
  transform: translate(53.3333333333px, 0px) rotate(-45deg);
  animation: arrowsAni 3s linear infinite -1.5s;
}

@keyframes arrowsAni {
  0% {
    border-left: 6.6666666667px solid rgba(255, 255, 255, 0);
    border-bottom: 6.6666666667px solid rgba(255, 255, 255, 0);
    transform: translate(-13.3333333333px, -53.3333333333px) rotate(-45deg);
  }
  10%, 90% {
    border-left: 6.6666666667px solid rgba(255, 255, 255, 0);
    border-bottom: 6.6666666667px solid rgba(255, 255, 255, 0);
  }
  50% {
    border-left: 6.6666666667px solid rgba(255, 255, 255, 1);
    border-bottom: 6.6666666667px solid rgba(255, 255, 255, 1);
    transform: translate(-13.3333333333px, 0px) rotate(-45deg);
  }
  100% {
    border-left: 6.6666666667px solid rgba(255, 255, 255, 0);
    border-bottom: 6.6666666667px solid rgba(255, 255, 255, 0);
    transform: translate(-13.3333333333px, 53.3333333333px) rotate(-45deg);
  }
}





body{
	font-family: 'Euclid Circular A';
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
}

.footer{
	background-color: #4c7bbe;
	color: #FFF;
	font-size: 16px;
	line-height: 22px;
	position: relative;
	height: 100px;
	font-size: 12px;
	line-height: 16px;
}

.footer a{
	color: #FFF;
	text-decoration: underline;
}

.footer a:hover{
	text-decoration: none;
}

input[type="file"] {
    display: none;
}

.ver2Header img{
	max-width: 100%;
}

.checkboxList{
	padding-top: 10px;
}

input[type="text"], input[type="email"], select, input[type="password"]{
	background: #F9FAFB;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;	
font-size: 17px;
  font-weight: normal;	
}

.mainContent{
	background-color: #FFFFFF;
}

.noWhite{
	background: transparent;
}

form{
	background-color: #4c7bbe;
	max-width: 90%;
	width: 865px;
	margin-left: auto;
	margin-right: auto;
	color: #FFF;
	padding: 50px;
	box-sizing: border-box;
	margin-bottom: 100px;	
	margin-top: 40px;
}

.dashBtn {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  border: 0;
  line-height: 30px;
  height: 30px;
  padding: 0 12px;
  text-align: center;
  text-decoration: none; /* makes <a> look like button */
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;
}

.dataRow table{
    font-size: 14px;
}

.dashBtn.danger, .generalBtn.danger{
    background-color: #f7a8ab;
    color: #000;
}

.mainHead{
    font-weight: bold;
}

.mainBody{

}

.mainBody strong{
    font-weight: bold;
}

#wrapAroundExtras hr{
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 30px;
    margin-bottom: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 17px;
  font-weight: normal; 
  line-height: 60px;  
}
.select2-container--default .select2-selection--single{
    border: 0;
    height: 60px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 16px;
}

.thisToStyle{
    height: 60px;
}

#wrapAroundExtras{
    display: none;
}

.dashBtn.blue{
    background-color: #5282c7;
}

.dashBtn.green{
    background-color: #c3c734;
    color: #000;
}

.dataTables_wrapper .dataTables_paginate .paginate_button{
    font-size: 12px;
}

.dashBtn:hover{
    opacity: 0.8;
}


form h3{
	font-size: 16px;
	line-height: 22px;
	padding-bottom: 20px;
	padding-left: 5px;
}

.labelTxt{
	font-size: 18px;
	line-height: 25px;
	padding-bottom: 2px;
	font-weight: 500;
}

.inputDiv{
	padding-bottom: 25px;
}

.extraTop{
	padding-top: 20px;
}

.checkboxList label{
	display: block;
	padding-bottom: 10px;
}

.checkLabelSpan{

}



.labelContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
	font-size: 16px;
	line-height: 1.3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.labelContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
	height: 20px;
	width: 20px;
	border-radius: 4px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.labelContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.labelContainer input:checked ~ .checkmark {
  background-color: #FFF;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.labelContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.labelContainer .checkmark:after {
	left: 6px;
	top: 3px;
  width: 5px;
  height: 10px;
  border: solid #4c7bbe;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.plainTxt{
font-size: 13px;
  line-height: 20px;
}

.moveFromTop{
	padding-top: 200px;
	padding-bottom: 200px;
}



.generalBtn{
	height: 49px;
	width: 125px;
	display: inline-block;
	background: #FFFFFF;
	border-radius: 100px;
	cursor: pointer;
	color: #4c7bbe;
	line-height: 49px;
	text-align: center;
	text-transform: uppercase;
	border: none;
	font-size: 14px;
	font-weight: bold;
}

.generalBtn.reversed{
    background: #4c7bbe;
    color: #FFFFFF;
}

.generalBtn:hover{
    opacity: 0.8;
}

.labelContainer a{
	color: #FFF;
	text-decoration: underline;
}

.labelContainer a:hover{
	text-decoration: none;
}

.termsTxt{
	font-size: 16px;
	line-height: 1.3;
}

.footer .innerRow{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 50px;
}

.line1{
	padding-top: 60px;
}

.line2{
	padding-top: 30px;
}

.line3{
	padding-top: 30px;
}

.loaderDiv{
	position: fixed;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background:rgba(255, 255, 255, 0.4);
	display: none;
}

.loaderDiv img{
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 50%;
	transform: translateY(-50%);
}


.errorField{
	background-color: #f7a8ab !important;
}

.js-snackbar-container {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    z-index: 999;
    overflow: hidden;
}

.js-snackbar-container--top-left {
    bottom: unset;
    right: unset;
    top: 0;
    left: 0;
}

.js-snackbar-container--top-center {
    top: 0;
    bottom: unset;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
}

.js-snackbar-container--top-right {
    bottom: unset;
    right: 0;
    left: unset;
    top: 0;
}

.js-snackbar-container--bottom-left {
    bottom: 0;
    right: unset;
    left: 0;
    top: unset;
}

.js-snackbar-container--bottom-center {
    bottom: 0;
    right: unset;
    left: 50%;
    top: unset;
    transform: translateX(-50%);
}

.js-snackbar-container--fixed {
    position: fixed;
}

.js-snackbar-container * {
    box-sizing: border-box;
}

.js-snackbar__wrapper {
    overflow: hidden;
	height: auto !important;
    margin: 0;
    border-radius: 3px;
    display: flex;
    min-width: auto;
    transition-property: all;
    transition-timing-function: ease;
    transition-duration: 0.5s;
}

.js-snackbar {
    display: inline-flex;
    box-sizing: border-box;
    border-radius: 3px;
    color: #eee;
    font-size: 16px;
    background-color: #262626;
    vertical-align: bottom;
    box-shadow: 0 0 4px 0 black;
    margin: 0 10px;
    flex-grow: 1;
}

.js-snackbar__close,
.js-snackbar__status,
.js-snackbar__message-wrapper {
    position: relative;
}

.js-snackbar__message-wrapper {
    flex: 1;
    padding: 12px;
}

.js-snackbar__message {
    display: inline-block;
}

.js-snackbar__status {
    display: none;
    min-width: 15px;
    margin-right: 5px;
    border-radius: 3px 0 0 3px;
    background-color: transparent;
}

 .js-snackbar__status.js-snackbar--success,
 .js-snackbar__status.js-snackbar--warning,
 .js-snackbar__status.js-snackbar--danger,
 .js-snackbar__status.js-snackbar--info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.js-snackbar__status.js-snackbar--success  {
    background-color: #4caf50;
}

.js-snackbar__status.js-snackbar--warning  {
    background-color: #ff9800;
}

 .js-snackbar__status.js-snackbar--danger {
    background-color: #a64d79;
}

 .js-snackbar__status.js-snackbar--info {
    background-color: #2196f3;
}

.js-snackbar__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 20px;
    height: 20px;
    width: 20px;
    text-align: center;
    margin: 0 5px;
}

.js-snackbar__action {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #838cff;
    cursor: pointer;
}

.js-snackbar__action:hover {
    background-color: #333;
}

.js-snackbar__close {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 10px;
    user-select: none;
    color: #BBB;
}

.js-snackbar__close:hover {
    background-color: #444;
}


* {
    box-sizing: border-box;
}


.content {
    overflow: auto;
    flex-grow: 1;
    max-height: 100%;
}

.display {
    font-size: 3rem;
    color: #2196f3;
    border: 3px solid #2196f3;
    background-color: white;
    text-align: center;
    padding: 1em 0; 
    white-space: nowrap;
    min-width: auto;
    overflow: hidden;
    margin: 1rem 0;
    display: none;
}


.box {
    height: 300px;
    max-height: 100%;
    border: 1px solid blue;
    position: relative;
    overflow: hidden;
    margin: 1rem auto;
}

.uploadedFile{
	padding-top: 10px;
}

.seondLineFooter{
	padding-top: 50px;
}

.footer img{
	width:80px;
	position: absolute;
	right: 55px;
	bottom: 35px;
}

.header{
	background-color: #4c7bbe;
	color: #FFF;
	position: relative;
}

.header.loginHeader{
	height: auto;
padding-top: 20px;
  padding-bottom: 20px;    
}

.header.sub{
	height: auto;
}

.cornerImg{
	position: absolute;
	top: 0;
	right: 0;
	height: 69%;
}

.header .headerLogo img, .headerSection .headerLogo img{

}

.header .logoLink{
    display: inline-block;
}


.innerWall p{
	padding-bottom: 20px;
	line-height: 1.2;
}

.wallText{
	padding-top: 40px;
}

.innerWall strong{
	font-weight: bold;
}

.innerWall a{
	text-decoration: none;
	color: #4c7bbe;
}

.header.sub .headerLogo{
	position: relative;
	z-index: 3;
}

.innerWall ul, .innerWall ol{
	margin-left: 15px;
}

.innerWall ul li{
	list-style: disc;
	padding-bottom: 10px;
	line-height: 1.2;
}

.innerWall ol li{
	list-style:decimal;
	padding-bottom: 10px;
	line-height: 1.2;
}

.innerHeader{
	max-width: 865px;
	width:90%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;	
}

.innerHeader.specTop{
	max-width: 1200px;
}

.innerMain{
	width: 90%;
	max-width: 845px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.innerMain h2{
	color: #4c7bbe;
	font-size: 20px;
	line-height: 25px;
	padding-top: 30px;
}

.innerMain p{
	color: #4c7bbe;
	font-size: 16px;
	line-height: 20px;
	padding-top: 15px;
	padding-bottom: 30px;
}

#usersTable {
  width: 100% !important;
}


.headerLinks{
    text-align: right;
}

.headerLinks li{
    display: inline-block;
    margin-left: 20px;
}

.headerLinks li a{
    text-decoration: none;
    font-size: 13px;
    color: #000;
}

.headerLinks li a:hover{
    text-decoration: underline;
}

.innerMain h2 {
font-size: 18px;
  line-height: 20px;
  padding-top: 20px;
  font-weight: bold;
}
.innerMain p {
  font-size: 14px;
  line-height: 18px;
  padding-top: 10px;
  padding-bottom: 20px;
}


.dataRow{
	margin-top: 30px;
    margin-bottom: 100px;
}

#usersTable_filter{
    margin-bottom: 30px;
}

#usersTable_info{
    font-size: 12px;
}

.logoutLink{
	text-align: right;
	padding-bottom: 20px;
}

.dataRow a{

}

.dataRow a:hover{
	text-decoration: none;
}

.dataRow table{
	text-align: left;
}

.dataRow table td{
	padding: 10px;
	border-bottom: 1px solid #666;
}

.headerRow{
}

.innerHeader h1, .innerHeader h2, .innerHeader p{
}

.innerHeader h1, .dataRow h1{
	font-size: 26px;
	line-height: 30px;
}

.dataRow h1{
	padding-bottom: 20px;
}

.innerHeader h2{
	color: #FFF;
	font-size: 20px;
	line-height: 25px;
	padding-top: 20px;
}

.innerHeader p{
	padding-top: 15px;
	font-size: 12px;
	line-height: 18px;
	padding-bottom: 15px;
}

.innerHeader p span{
	font-size: 22px;
	line-height: 20px;	
}

.mobileHeader{
	display: none;
}

.innerWall{
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.mainContent.down{
	margin-top: 20px;
}

.splashSection{
	height: calc(100vh - 179px);
}

.splashGrid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 100%;
	text-align: center
}

.splashGrid h2{
  font-size: 35px;
  line-height: 45px;
  position: relative;
  z-index: 9;
  padding-bottom: 35px;
}

.splashGrid a{
	border-radius: 100px;
	padding-left: 20px;
	padding-right: 20px;
	display: inline-block;
	padding-top: 17px;
	padding-bottom: 17px;	
	text-decoration: none;
	font-size: 14px;
	position: relative;
	z-index: 10;
}

.firstHalf{
	background-color: #4c7bbe;
	color: #fdfbfd;
	position: relative;
	padding-top: 30%;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 20px;	
}

.firstHalf a{
	background-color: #fdfbfd;
	color: #4c7bbe;
}

.secondHalf a{
	background-color: #4c7bbe;
	color: #fdfbfd;
}

.secondHalf{
	background-color: #00adef;
	color: #4c7bbe;
	padding-top: 30%;
	position: relative;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 20px;	
}

.citrusMaane{
	position: absolute;
	bottom: 0;
	left: -2px;
	max-height: 50%;
}

@media all and (max-height:900.5px){
	.splashGrid h2{
		padding-bottom: 30px;
		font-size: 30px;
		line-height: 40px;		
	}	
	
	.firstHalf, .secondHalf{
		padding-top: 20%;
	}
}


@media all and (max-width:991.5px){
	

    .select2-container--default .select2-selection--single .select2-selection__rendered{
        height: 40px;
        line-height: 40px;  
    }
    .select2-container--default .select2-selection--single{
        height: 40px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow{
        top: 8px;
    }

    .thisToStyle{
        height: 40px;
    }

	.innerHeader{
		padding-top: 20px;
	}
	
	.footer .innerRow{
		width: 90%;
	}
    
    .innerHeader h1, .dataRow h1{
        font-size: 20px;
        line-height: 25px;
    }

.header img {
  max-width: 60px;
}    

.header.loginHeader {
  padding-top: 10px;
  padding-bottom: 10px;
}

.headerLinks li{
    margin-left: 10px;
}


.header.sub {
  height: 115px;
}	
	
.innerHeader h1 {
  font-size: 18px;
  line-height: 22px;
}
	
.innerHeader h2 {
  font-size: 16px;
  line-height: 20px;
  padding-top: 10px;
}	
	
.innerHeader p {
  font-size: 15px;
  padding-top: 10px;
  line-height: 18px;
  padding-bottom: 20px;
}
	
.innerHeader p span {
  font-size: 20px;
  line-height: 20px;
}	
	
	.header .headerLogo img, .headerSection .headerLogo img{
		width: 50px;
		left: 20px;
		position: static;
	}
	
	.headerSection.splashHeader .headerLogo img{
		position: absolute;
		top: 20px;
	}
	
	.headerLogo{
		margin-left: auto;
		margin-right: auto;
		width: 90%;
		padding-top: 20px;
	}
	
	.headerSection.splashHeader .headerLogo{
		padding-top: 0;
	}
	
	.mobileHeader{
		display: block;
		width: 100%;
		height: auto;
		padding-top: 20px;
	}	
	
	.header{
		height: auto;
	}
	
	.cornerImg{
		display: none;
	}
	
	form h3{
		font-size: 11px;
		padding-left: 0;
		padding-bottom: 8px;
	}
	
	.labelTxt{
		font-size: 14px;
		line-height: 20px;
		padding-bottom: 0;
	}
	
	form{
		padding: 15px;
		margin-bottom: 50px;
	}
	
	input[type="text"], input[type="email"], select, input[type="password"]{
		height: 40px;
		line-height: 40px;
	}
	
	.inputDiv {
	  padding-bottom: 12px;
	}	
	
	.labelContainer{
		font-size: 12px;
	}
	
	.plainTxt{
		font-size: 12px;
	}
	
	.line2 {
	  padding-top: 15px;
	}

	.line3 {
	  padding-top: 15px;
	}	
	
	.line1 {
	  padding-top: 25px;
	}	
	
	.footer{
		font-size: 12px;
	}
	
	.seondLineFooter{
		padding-top: 15px;
	}
	
	.footer img{
		width: 50px;
		right: 20px;
		bottom: 20px;
	}
	
	.footer .innerRow{
padding-top: 20px;
padding-bottom: 20px;
	}
	
	.custom-file-upload{
		font-size: 11px;
		height: 35px;
		line-height: 35px;
		width: 112px;
	}
	
	.generalBtn{
		font-size: 11px;
		height: 35px;
		line-height: 35px;
		width: 112px;		
	}
	
	.checkmark{
		width: 17px;
		height: 17px;
	}
	
	.labelContainer .checkmark::after{
		left:5px;
		top: 1px;
	}
	
	.checkboxList label{
		padding-bottom: 3px;
	}
	
	.splashGrid h2{
		font-size: 20px;
		line-height: 30px;		
	}
	
	.citrusMaane{
		max-width: 90%;
		max-height: none;
	}
	
	.firstHalf, .secondHalf{
		padding-top: 150px;
	}
}

@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: right;
  }
}