﻿@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@200;300&family=Open+Sans:wght@300&display=swap");

/***************  main vars  *******************************/

:root {
  --primary: #075ea5;
  --secondary: #3d9fc6;
  --ter: #1d587f;
  --success: #74a76b;
  --info: #3cc7fe;
  --light: #ebf3ff;
  --light2: #cce0ff;
  --light3: #f2f2ff;
  --dark: #1f3655;
  --warning: #cfe55e;
  --bold: #88001b;
  --gray1: #566573;
  --gray2: #cccccf;
  --minbreak1: 802px;
  --logowidth: 350px;
  --logoheight: 80px;
  --contrast: #008ae6;
}

/***************  defaults  *******************************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  /* font-family: Arial, Helvetica, sans-serif; */
  color: var(--dark);
  background: #fff;
}

/***************  layout generic  *******************************/
.mb-1 {
  margin-bottom: 1.5rem;
}

.relative {
  position: relative;
}

.height85vh {
  height: 85vh;
}

.height100px {
  height: 100px;
}

.height85px {
  height: 85px;
}

.height100per {
  height: 100%;
}

.heightMin600 {
  min-height: 600px;
}

.heightMin450 {
  min-height: 450px;
}

.heightMin250 {
  min-height: 250px;
}

.heightMin50vh {
  min-height: 50vh;
}

.heightMin60vh {
  min-height: 60vh;
}

.heightMin70vh {
  min-height: 70vh;
}

.height300px {
  height: 300px;
}

.height400px {
  height: 400px;
}

.scrolly {
  overflow-y: auto;
}

.addPad3 {
  padding: 3px;
}

.addPad3 div {
  padding: 3px;
}

/*.heightMin75vh {
    height: 75vh;
    min-height: 300px;
}*/

.fontSizeLarge {
  font-size: 1.3rem;
}

.fontSizeLarger {
  font-size: 1.2rem;
}

.fontSizeSmaller {
  font-size: 0.9rem;
}

.fontSizeSmall {
  font-size: 0.8rem;
}

/***************  text classes  *******************************/
.textHeader {
  font-family: "Open Sans", sans-serif;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-light {
  color: var(--light);
}



.text-light2 {
  color: var(--light2);
}


.text-light3 {
  color: var(--light3);
}





.text-info {
  color: var(--info);
}

.text-dark {
  color: var(--dark);
}

.text-bold {
  color: var(--bold);
}

.text-white {
  color: #fff;
}

.text-success {
  color: var(--success);
}

.text-warning {
  color: var(--warning);
}

.text-ter {
  color: var(--ter);
}

.text-lead {
  font-size: 1.2rem;
}

.text-contrast {
  color: var(--contrast);
}

.display-1 {
  font-size: 5rem;
}

.display-2 {
  font-size: 4rem;
}

.display-3 {
  font-size: 3rem;
}

.display-4 {
  font-size: 2rem;
}

.display-5 {
  font-size: 1.6rem;
}

.text-tiny {
  font-size: 0.8rem;
}

.text-smaller {
  font-size: 0.9rem;
}

.text-smaller2 {
  font-size: 0.8rem;
  line-height: .85;
}

.borderBottomDotted {
  border-bottom: 1px dotted #ccc;
}


.text-larger {
  font-size: 1.1rem;
}

.text-larger2 {
  font-size: 1.3rem;
}

.text-Open {
  font-family: "Open Sans", sans-serif;
}

.text-Right {
  text-align: right;
}

.text-Left {
  text-align: left;
}

/***************  bg classes  *******************************/

.bg-primary {
  background: var(--primary);
}

.bg-light {
  background: var(--light);
}

.bg-light2 {
  background: var(--light2);
}

.bg-light3 {
  background: var(--light3);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-warning {
  background: var(--warning);
}

.bg-white {
  background: #fff;
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-info {
  background: var(--info);
}

.bg-bold {
  background: var(--bold);
}

.bg-black {
  background: #000 !important;
}

.bg-success {
  background: var(--success);
}

.bg-ter {
  background: var(--ter);
}

.bg-gray1 {
  background: var(--gray1);
}

.bg-gray2 {
  background: var(--gray2);
}

/* btn */

#btn_logout {
  font-family: "Kumbh Sans", sans-serif;
}

.btn {
  color: var(--primary);
  background: var(--light);
  border: 4px solid var(--light);
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 0.5rem;
}

.btn:hover {
  border: 4px solid var(--primary);
}

.btn-light {
  background: var(--light);
  color: var(--primary);
  border: 4px solid var(--light);
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  /*    border: 4px solid var(--secondary);*/
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 0.5rem;
}

.btn-danger {
  background: var(--bold);
  color: var(--light);
  /*    border: 4px solid var(--secondary);*/
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 0.5rem;
}

.btnSml {
  color: var(--primary);
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: 2px;
  font-size: 0.9rem;
  padding: 0.3rem;
  height: 90%;
  margin-top: 2px;
  margin-bottom: 2px;
}

.btnSmlPrimary {
  color: var(--dark);
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: 3px;
  font-size: 0.9rem;
  padding: 0.3rem;
  height: 90%;
  margin-top: 2px;
  margin-bottom: 2px;
}

.btnSmlPrimary:hover {
  background-color: var(--dark);
  color: var(--light);
}

.btnSml:hover {
  background: var(--primary);
  color: #fff;
}

.btn2Sml {
  color: var(--bold);
  border-radius: 2px;
  font-size: 0.9rem;
  padding: 0.3rem;
  height: 90%;
  margin-top: 2px;
  margin-bottom: 2px;
}

.btn2Sml:hover {
  background: var(--primary);
  color: #fff;
}

/***************  base classes  *******************************/
.testborder {
  border: 1px solid red;
}

.highlight1 {
  color: var(--ter);
  background: var(--light);
  padding: 4px;
  font-size: 1.1rem;
  margin-left: 4px;
  margin-right: 4px;
  display: flex;
  justify-content: center;
}

.container {
  width: 85%;
  margin: auto;
  padding-top: 3px;
  padding-bottom: 3px;
}

.container2 {
  width: 95%;
  margin: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.container2a {
  width: 95%;
  margin: auto;
  padding-top: 1px;
  padding-bottom: 1px;
}

.container2b {
  width: 98%;
  margin: auto;
  padding-top: 1px;
  padding-bottom: 1px;
}

.container3 {
  width: 80%;
  margin: auto;
  padding-top: 2px;
}

.textCenter {
  width: 100%;
  display: flex;
  justify-content: center;
  justify-items: center;
  text-align: center;
}

.textJustify {
  text-align: justify;
}

.textAlignCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  width: 100%;
  text-align: right;
}

.maxHeight {
  height: 100%;
}

.maxHeight450 {
  max-height: 450px;
}

.padTableRow {
  padding: 3px 12px;
}

.pad10 {
  padding: 10px;
}

.padY5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.padY20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padX20 {
  padding-left: 20px;
  padding-right: 20px;
}

.padT5 {
  padding-top: 5px;
}

.padT2 {
  padding-top: 2px;
}

.padT20 {
  padding-top: 20px;
}

.transparent {
  opacity: 0;
}


.marginBottom3 {
  margin-bottom: 3px;
}

.marginTop2 {
  margin-top: 2px;
}

.marginTop3 {
  margin-top: 3px;
}

.marginTop5 {
  margin-top: 5px;
}

.marginTop20 {
  margin-top: 20px;
}

.marginTop15 {
  margin-top: 15px;
}

.marginTop45 {
  margin-top: 45px;
}

.marginTop60 {
  margin-top: 60px;
}

.margin3 {
  margin: 3px;
}

.marginAuto {
  margin: auto;
}

.marginSide2px {
  margin-left: 2px;
  margin-right: 2px;
  ;
}

.marginLeft5per {
  margin-left: 4%;
}

.marginLeft10per {
  margin-left: 9%;
}

.paddingLeft10 {
  padding-left: 50px;
}

.padding10 {
  padding: 10px;
}

.paddingX10 {
  /* padding-left: 5px;
  padding: 3px 10px;
}

.paddingX5 {
  /* padding-left: 5px;
    padding-right: 5px; */
  padding: 3px 10px;
}



.padding5 {
  padding: 5px;
}

.padding2 {
  padding: 2px;
}


.container1 {
  display: flex;
}

.containerVertAgent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;

  align-items: center;
  align-content: center;

}

.contanerVertAgentLoad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  ;
  align-items: center;
  align-content: center;
  gap: 20px;
}

.gridCenter {
  display: grid;
  justify-content: center;
  align-content: center;
}

.containerVertAgent div {
  width: 180px;
  text-align: center;
}

.containerVert {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px;
  width: 100%;
}

.containerVertEnd {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  justify-items: flex-end;
  padding: 10px;
  width: 100%;
  height: 250px;
}

.containerVertEnd2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  justify-items: flex-end;
  padding: 10px;
  width: 100%;
  height: 230px;
}

.containerVertEnd2tl {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  justify-items: flex-end;
  padding: 10px;
  width: 100%;
  /* height: 195px; */
}

.containerVert2 {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  justify-items: flex-start;
}

.containerVer3 {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  justify-items: flex-start;
}

.containerHorAgent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 5px;
}


.containerHorNoWrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  align-content: center;
  align-items: center;
}


.containerHorNoWrapTop {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  align-content: flex-start;
  align-items: center;
}

.containerUWHorSpace {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  color: var(--ter);
  padding: 6px;
}

.containerUWHorSpace div {
  width: 40%;
  padding: 20px;
  padding: 5px 20px;
  height: 100%;
}


.containerUWHorSpace2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  color: var(--ter);
  padding: 3px 3px;
}

.containerUWHorSpace2 div {
  width: 200px;
  padding: 5px;
  height: 100%;
}

.containerUWHorSpace3 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  color: var(--ter);
  padding: 3px;
}

.containerUWHorSpace3 div {
  padding: 15px;
  height: 100%;
}

.containerHorSpace {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: flex-start;
  color: var(--ter);
  font-size: 1.7rem;
  line-height: 2rem;
  ;
}

.containerHorSpace div label {
  border-bottom: 1px solid var(--primary);
  font-weight: bold;
  text-align: center;
}

.containerHorSpace div {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  justify-items: center;
  padding: 5px;
}

.containerHorNoWrapTop {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  align-content: flex-start;
  align-items: flex-start;
}

.containerHorNoWrap3 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.containerHorNoWrap3L {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

.container1 div {
  padding: 0.2rem;
  width: 200px;
  height: 200px;
}

.containerPlanRow {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  justify-items: flex-start;
  padding: .3rem;
}

.containerPlanColumn {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  justify-items: flex-start;
  align-content: flext-start;
  align-items: flext-start;
  color: var(--primary);

}



.boldEntry {
  color: var(--dark);
  font-weight: bold;
}

.width1px {
  width: 1px;
}

.width70px {
  width: 70px;
}


.width80px {
  width: 80px;
}

.width100per {
  width: 100%;
}

.width15per {
  width: 15%;
}

.width20per {
  width: 20%;
}

.width25per {
  width: 25%;
}

.width35per {
  width: 35%;
}

.width45per {
  width: 45%;
}

.widthSmallCol {
  width: 80px;
}

.width50per {
  width: 50%;
}

.width30per {
  width: 30%;
}

.width60per {
  width: 60%;
}

.width10per {
  width: 10%;
}

.width70per {
  width: 70%;
}

.width80per {
  width: 80%;
}


.width100px {
  width: 100px;
}

.width140px {
  width: 140px;
}

.width145px {
  width: 145px;
}

.width150px {
  width: 150px;
}

.width200px {
  width: 200px;
}

.width300px {
  width: 300px !important;

}

.width280px {
  width: 280px !important;
}

.width250px {
  width: 250px !important;
}

.width400px {
  width: 400px;
}

.width430px {
  width: 400px;
}

.width500px {
  width: 500px;
}

.width600px {
  width: 600px;
}

.width700px {
  width: 700px;
}

.width800px {
  width: 800px;
}

.widthMin900 {
  min-width: 900px;
}

.minWidth80per {
  min-width: 80%;
}

.minHeight200px {
  min-height: 200px;
}

.minHeight100px {
  min-height: 100px;
}

.minHeight50px {
  min-height: 50px;
}

.minHeight40px {
  min-height: 40px;
}

.minHeight30px {
  min-height: 40px;
}

.minHeight20px {
  min-height: 20px;
}

/******** specific layouts **********/


/* ******* Illustration ****** */





/*  Nav   */
#nav1 {
  display: flex;
  justify-content: flex-start;
}

#nav1Left {
  width: 350px;
  padding-left: 40px;
}

#nav1Right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 100px;
  height: 50px;
}

#nav1Right div {
  padding-left: 40px;
  height: 100%;
  padding-top: 15px;
}

#nav1 .lead {
  justify-self: flex-start;
}

#nav1 a {
  text-decoration: none;
  color: #fff;
  padding: 8px;
  border: 1px solid var(--dark);

}

#nav1 a:hover {
  border: 1px solid var(--light);
  border-radius: 4px;
  background: var(--ter);
}


#btn_logout {
  color: #fff;
  padding: 8px;
  border: 1px solid var(--dark);
  background: var(--dark);
  font-size: 1rem;
}

#btn_logout:hover {
  border: 1px solid var(--light);
  border-radius: 4px;
  background: var(--ter);
}

#fixform {
  padding-top: 5px !important;
}

#main {
  position: static;
}

.formLabel {
  font-size: 1.1rem;
  font-weight: 600;
}

#formSignin {
  height: 300px !important;
}

#footer1 {
  min-height: 30px;
  /* border-top: 1px solid var(--light);*/
  /*border-bottom: 1px solid var(--light);*/
}

#footer2 {
  min-height: 30px;
  border-top: 1px solid var(--gray2);
  font-size: 0.8rem;
  /*border-bottom: 1px solid var(--light);*/
}

.round3 {
  border-radius: 3px;
}

.smlInput {
  background-color: var(--light);
  color: var(--primary);
  text-align: center;
  padding: 5px;
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1.1rem;
}

.inputs1 {
  margin-top: auto;
}

.containerFormHor {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap !important;
}

.containerFormHor .div {
  padding-left: 3px;
  padding-right: 5px;
}

.isVisible {
  visibility: visible;
}

.noSee {
  visibility: hidden;
}

/******** Index ********/



#mainbodyindex {
  background-image:
    linear-gradient(to bottom, rgba(245, 246, 252, .4), rgba(92, 137, 189, .7)),
    url('../images/bld1.jpg');
  width: 100%;
  height: 100vh;
  background-size: cover;
  color: #3cc7fe;

}

.icon-user {
  font-size: 1.6rem;
  color: var(--secondary);
  display: flex;
  flex-wrap: nowrap;
}

.icon-user input {
  border: none;
}

.icon-user input:focus {
  outline: none;
}

.warnBold {
  background-color: var(--bold);
  border: 0;
  color: #fff;
  border-radius: 5px;
  padding: 4px 7px;
}

.circleWhite {
  background-color: #fff;
  color: var(--bold);
  border-radius: 20px;
  padding: 2px;
  font-size: small;
}

.imgci {
  width: 450px;
  opacity: 1;
}

.imgcicont {
  width: 500px;
  background-color: #fff;
  opacity: .9;
  border-radius: 50px;
  padding: 1rem;
  margin-bottom: 20px;
}

.loginField {
  font-size: 1.4rem;
  border: none;
  background: var(--light);
  color: var(--ter);
  padding: 3px;
  width: 200px;
  padding-left: 10px;
}

.control1 label {
  font-weight: bold;
  padding: 3px;
}

.control1 input {
  padding: 3px;
}

.control1 {
  line-height: 1.1rem;
}

/* ******** Agent ******** */
.borderTop {
  border-top: 1px solid var(--gray2);
}

.borderBottom {
  border-bottom: 1px solid var(--gray2) !important;
}

.borderBottomPrimary {
  border-bottom: 1px solid var(--primary);
}

.borderLight {
  border: 1px solid var(--light2);
  border-radius: 5px;
}

.borderLight1 {
  border: 1px solid var(--light);
  border-radius: 5px;
}

.borderGrey {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.borderPrimary {
  border: 1px solid var(--primary);
  border-radius: 5px;
}

/* ******** Agent-Group ******** */

#groupContainer1 {
  width: 100%;
  min-height: 425px;
  overflow-y: auto;
}

#groupContainer2 {
  width: 100%;
  /* min-height: 550px;*/
  /*    overflow-y: auto;*/
}

#groupContainer1 .containerHorNoWrap div {
  padding-left: 3px;
  padding-right: 3px;
}

.groupFormLeft {
  width: 50%;
  text-align: right;
}

.groupFormRight {
  width: 50%;
  text-align: left;
}

#groupContainer1 input {
  font-size: 1.1rem;
  outline-color: var(--light2);
  border-color: var(--light3);
  color: var(--dark);
  outline-style: none;
  border-radius: 4px;
  padding: 5px;
  line-height: 1.8rem;
}

#groupContainer1 .containerHorNoWrap {
  margin-top: 0.6rem;
}

#groupContainer1 input:focus {
  background: var(--light);
}

.upload input {
  font-size: 1.1rem;
  outline-color: var(--light2);
  border-color: var(--primary);
  color: var(--dark);
  outline-style: none;
  border-radius: 3px;
  padding: 3px;
  line-height: 1.8rem;
}

.line2 {
  line-height: 1.8rem;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;

}

.line1 {
  line-height: 1.6rem;
}

.listStyleBlank {
  list-style: none;
}

.mybul {
  font-size: 1.2rem;
  color: var(--bold);
  padding: 5px;
}

.dd {
  font-size: 1.2rem;
  color: var(--ter);
  background: #fff;
}

.containerHorLeft {
  display: flex;
  justify-content: flex-start !important;
  flex-shrink: 0 !important;
}

#chkRenewal {
  font-size: 3rem;
  padding: 4px;
}

.dropDown {
  font-size: 1.1rem;
  outline-color: var(--light2);
  border-color: var(--light3);
  color: var(--dark);
  outline-style: none;
  border-radius: 3px;
  padding: 3px;
  line-height: 1.2rem;
}

#agentLinks {
  background: var(--secondary);
}

#agentLinks a {
  border: 1px solid var(--secondary);
  color: #fff;
  padding: 0.3rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  border: 0;
}

#agentLinks a:hover {
  /* border: 1px solid var(--light); */
  background: var(--ter);
}

#agentLinks div {
  padding: 10px 2px;
}

.agentContainer1 {
  display: flex;
  justify-content: flex-start;
  margin-left: 50px;
}

.agentContainer1 div {
  padding-left: 10px;
  padding-top: 3px;
}

.containerHorNoWrap2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  align-content: center;
  align-items: center;
}

.containerHorNoWrap2 div {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}


.containerHorNoWrap3 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 100%;
  align-content: center;
  align-items: center;
}

.containerHorNoWrap3 div {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}


.containerHorNoWrap4 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  align-content: center;
  align-items: center;

}

.containerHorNoWrap4 div {
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.containerHorNoWrap4 div label {
  font-weight: bold;
}

#tbl_eeplans {
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1.5em;
}

#tbl_eeplans tr {
  border-bottom: 1px solid var(--dark);
}

.planBox {
  padding: 1rem;
  background: #fff;
  color: var(--primary);
  border: 4px solid var(--primary);
  border-radius: 10px;
  font-size: 1.9rem;
  line-height: 2.2rem;
  height: 100%;
}

.trow {
  padding: 10px;
  padding-bottom: 9px;
  line-height: 1.8rem;
}

.trow th {
  padding-right: 10px;
}

.alignStart {
  align-content: flex-start;
  align-items: flex-start;
}

.justifySpaceAround {
  justify-content: space-around;
}

.justifyStart {
  justify-content: flex-start;
  justify-items: flex-start;
}

.ratesInnerCol {
  width: 50%;
}

.radius15 {
  border-radius: 15px;
}

.customExample {
  min-width: 450px;
  /*    height: 100%;
    background: url(../images/custom.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;*/
}

.pdfview {
  width: 99%;
  min-width: 800px;
  height: 500px;
}

/*TESTING*/
.tabletest td {
  background: var(--light2);
  padding: 3px;
}

.tabletest th {
  background: var(--gray2);
  padding: 3px;
}

.indexRoleContainer {
  display: flex;
  width: 100%;
  justify-content: center;
}

.indexRoleItem {
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 3px;
}

#uploadInnerLeft {
  border-radius: 9px;
}

.lineHt17 {
  line-height: 1.7em;
}

.uwtblholder table tr th,
td {
  padding: 1px;
}


.pos_smallText {
  font-size: 13px;

}

.containerPos1 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.boldLabel label {
  font-weight: bold;
}

.pos_tbl1 {
  color: var(--dark);
  font-size: 12px;
}

.pos_tbl1 td {
  text-align: left;
}

.uwCostTable {
  color: var(--dark);
  line-height: 1.1;
  font-size: smaller;
}

.uwCostTable td {
  padding: 2px;
  margin: 4px;
  text-align: left;
}

.uwCostTable td label {
  font-weight: bold;
  padding-right: 2px;
}



#tbl_assign {
  margin-top: 30px;
  border-top: 1px solid #ccc;
}

#tbl_assign tr {
  padding: 10px 3px;
  border-top: 1px dotted #ddd !important;
}

#tbl_assign td,
th {
  padding: 3px 1px;
  min-width: 50px;
}

#tbl_assign select {
  padding: 3px;
  font-size: .9rem;
  color: var(--primary);
  border-radius: 4px;
  background-color: var(--light);
}

/*  POS output   */
#posPrintHeader {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  right: 60px;
  top: 15px;
}

#posPrintHeader2 {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  right: 60px;
  top: 105px;
}

.uwPresent {
  font-style: italic;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 5px;
}

.uwPresent2 {
  font-style: italic;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 3px;
}

.uwLead {
  font-weight: bold;
  font-size: 1.2;
  padding: 5px;
}

.uwBold {
  font-weight: bold;
  font-style: italic;
  padding: 0 5px;
}

.uwBoldNoItal {
  font-weight: bold;

  padding: 0 5px;
}

.uwList {
  padding: 7px;
  line-height: 1.1;
}

.grad1 {
  background-image: linear-gradient(to bottom, #bbc, #fff);
}

.grad2 {
  background-image: linear-gradient(to bottom, #fff, #bbc);
}

.radius4 {
  border-radius: 4px;
}

.posLink1 {
  display: flex;
  flex-direction: row;
}

.printButton button {
  padding: 4px 6px;
  border: 1px solid var(--dark);
  border-radius: 4px;
  background: var(--light);
  margin-right: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.printButton :hover {
  background-color: var(--secondary);
}

#posLinks {
  width: 100%;
}

.overflow-y-auto {
  overflow-y: auto;
}

.outputProposal {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  padding: 5px;
  height: 90px;
  margin-bottom: 2px;
}

.outputRibbon {
  height: 1px !important;
  background-color: black !important;
  border: 5px solid black !important;
}

.uwoutputRibbon {
  height: 1px !important;
  background-color: black !important;
  border: 3px solid black !important;
  width: 100%;
}

.outputRibbonDark {
  height: 1px !important;
  background-color: var(--dark) !important;
  border: 5px solid var(--dark) !important;
}

#outputCovVert {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 800px;
  align-content: center;
  align-items: center;
}

#outputLogo {
  min-height: 200px;
}

.outputVert1 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  padding: 5px;
}

#outputMainLoop {
  margin: auto;
  width: 80%;
  max-width: 850px;
}

.outputBorder1 {
  border: 2px solid var(--dark);
  border-radius: 2px;
  padding: 3px;
  background: var(--light);
  color: black;
}

.outputInnerVert {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
}

.outputInnerVert div {
  margin-left: 50px;
  padding: 4px 2px;
}

.outputHor {
  display: flex;
  justify-content: space-around;
}

.outputHor div {
  padding: 5px;
}

.maxwidth450 {
  max-width: 450px;
}

.maxW100per {
  width: 100%;
}


.maxW50per {
  max-width: 50%;
}

.maxW40per {
  max-width: 40%;
}


.quote2Table {
  color: var(--ter);
  border: 1px solid primary;
  border-radius: 4px;
}


.quote2Table th {
  padding: 2px 10px;
}

.quote2Table td {
  padding: 2px 10px;
}

.quote2Table th {
  color: var(--primary);

}


.outputHor4Col {
  display: flex;
  justify-content: space-evenly;
}

.outputHor4Col div {
  width: 22%;
  padding: 4px;
}

.outputVert0 {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 5px;
}

.outputVert0 div {
  margin-top: unset;
  margin-bottom: 15px;
}


.outputVert1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 5px;
}

.outputVert1 div {
  margin: 2px;
}

.outputFamilyBorder {
  border: 2px solid var(--primary);
  border-radius: 11px;
  width: 85%;
}

.outputPlanName {
  background: var(--light);
  color: var(--primary);
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  /* padding: 4px 1px; */
}

.textAright {
  text-align: right;
}

.textAcenter {
  text-align: center;
}

.textAleft {
  text-align: left;
}

.onlyPrint {
  display: none;
}

.cellpad tr td {
  padding: 0 4px;
}

.displayinline {
  display: inline;
}

.displayBlock {
  display: block;
}

.containerHorUW1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.containerHorUW1 div {
  padding: 1rem;
  height: 300px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
}




/* ******* uw calc table ****** */


.tbl_calc {

  border-radius: 3px;
  margin: 1rem;
  padding: 10px;

}

.tbl_ill {
  min-width: 100px;
  padding: 1px 5px;
  font-size: 15px;
}

.tbl_calc tr {
  margin: 4px 0;
}

.tbl_calc th,
td {
  margin: 2px 2px;
  text-align: center;
}

.width10px {
  width: 10px;
}

.tborder {
  border: 1px solid #ccc;

}

.bgt1 {
  background-color: #dde;
}

.bgt2 {
  background-color: #ccd;
}

.bgt3 {
  background-color: #f6f6fa;
}

.minWidthAgent {
  min-width: 700px;
  ;
}










/*********** small screen *****************/



@media only screen and (max-width: 600px) {
  #RatesInner {
    display: block;
    width: 100%;
  }

  #RatesContainerInner {
    width: 100%;
  }

  .ratesInnerCol {
    width: 95%;
  }

  #CustomInner {
    display: block;
    width: 100%;
  }


  .imgci {
    width: 400px;

  }

  .imgcicont {
    width: 450px;

  }




}




@media print {
  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact;
    overflow: hidden !important;
  }



  @page {
    size: letter;
    margin: 4px;
    overflow: hidden !important;
    /* @bottom-left {
      content: footnote;
    } */
  }

  #sectionPosAll {
    position: relative;
  }

  .widthMin900 {
    min-width: 850px;
  }

  .containerPlanRow {
    padding: 1px;
    font-size: .9rem;
  }

  #outputMainLoop {
    width: 95%;
    max-width: unset;
  }

  #section_uw_rates .bg-bold {
    background-color: unset;
    border: 1px solid var(--bold);
  }

  #section_uw_rates .text-white {
    color: var(--dark);
  }




  .break {
    page-break-after: always !important;
    display: block;
  }


  .noShowPrint {
    display: none !important;
  }

  .onlyPrint {
    display: unset !important;
  }

  .printSmall {
    font-size: 0.9rem;
  }

  .fontSizeLarge {
    font-size: 1rem;
  }
}