/* ------------------------------
  GLOBAL STYLES - PERSONA PRO PORTAL
  Description: Centralized styles for consistent UI
  Author: Vinod
--------------------------------*/

/* ------------------------------
  FONT IMPORTS
--------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://use.typekit.net/hso1vnj.css");

/* ------------------------------
  CSS VARIABLES
--------------------------------*/
:root {
  /* Fonts */
  --font_georgia: Georgia, serif;
  --open-sans: "Open Sans", sans-serif;

  /* Colors */
  --gray: #e9f1ff;
  --white: #ffffff;
  --black: #000000;
  --red: #fd546a;
  --bright_cranberry: #E02B5B;
  --cranberry: #D51C5A;
  --primary_blue: #123456;
  --pattens_blue: #E2EEF7;
  --nickel: #6A7079;
  --error_red: #CD2653;

  /* Typography Sizes */
  --base-font-size: 20px;
  --small-font-size: 16px;
  --heading-one-size: clamp(32px, 5vw, 50px);
  --heading-two-size: clamp(24px, 2vw, 34px);
  --heading-three-size: 26px;
  --para-size: clamp(18px, 2vw, 25px);
}

/* ------------------------------
  GLOBAL RESET & BASE STYLES
--------------------------------*/
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100%;
  font-family: var(--open-sans);
  font-size: var(--base-font-size);
  font-weight: 400;
  color: var(--primary_blue);
  background-color: var(--pattens_blue);
  overflow-x: hidden;
  overflow-y: auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer !important;
  text-decoration: none;
  color: var(--primary_blue);
  font-size: 18px;
}
a:hover, a:focus, a:active {
  color: var(--primary_blue);
}

/* ------------------------------
  TYPOGRAPHY STYLES
--------------------------------*/
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font_georgia);
  font-weight:700;
}
.head-one,
.head-two,
.head-three,
.head-four,
.head-five,
.head-six {
  font-family: var(--font_georgia);
  font-weight: 700;
}

.head-one {
  font-size: var(--heading-one-size);
  margin: 0 0 15px;
}
.head-two {
  font-size: var(--heading-two-size);
}
.head-three {
  font-size: var(--heading-three-size);
  margin: 20px 0 10px;
}
.head-four {
  font-size:24px;
}
.para {
  margin-bottom: 15px;
  font-size: var(--para-size);
}
.regular, .para-regular { font-weight: 400 !important; }
.medium, .para-medium { font-weight: 500 !important; }
.semibold, .para-semibold { font-weight: 600 !important; }
.bold { font-weight:700!important;}

.text-nickel {
  color:var(--nickel);
  font-style: italic;
  font-weight: 500;
  font-family: var(--open-sans);

}
.text-red {
  color:var(--error_red);
}


/* ------------------------------
  BUTTON STYLES
--------------------------------*/
button {
  border:none;
  outline:none;
  background-color: transparent;
}
.primary_btn_red {
  background-color: var(--bright_cranberry);
  color: var(--white);
  border: 2px solid var(--bright_cranberry);
  border-radius: 30px;
  padding: 8px 50px;
  font-weight: 700;
  display: inline-block;
  transition: 0.2s;
  text-align: center;
  line-height: 1.5;
}

.primary_btn_red:hover,
.primary_btn_red:focus {
  border-radius: 30px;
  opacity: 0.9;
}

.border_btn_red {
  background-color: var(--white);
  color: var(--bright_cranberry);
  border: 2px solid var(--bright_cranberry);
  border-radius: 30px;
  padding: 8px 50px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  transition: 0.2s;
}

.secondary_btn_white {
  background-color: var(--white);
  color: var(--bright_cranberry);
  border: 2px solid var(--bright_cranberry);
  border-radius: 30px;
  padding: 8px 50px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  transition: 0.2s;
}
.secondary_btn_blue {
  background-color: var(--white);
  color: var(--primary_blue);
  border: 2px solid var(--primary_blue);
  border-radius: 30px;
  padding: 8px 50px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  transition: 0.2s;
}
.red_border_btn {
  color:#CD2653;
  border:1px solid #CD2653;
 padding:8px 15px;
  background-color: var(--white);
  border-radius:30px;
}
.red_border_btn:focus,
.red_border_btn:hover {
  border-radius:30px;
}
.white_border_btn {
  color:var(--white);
  border:1px solid #CD2653;
 padding:8px 15px;
  background-color: #CD2653;
  border-radius:30px;
}
.white_border_btn:focus,
.white_border_btn:hover {
  border-radius:30px;
}

/* ------------------------------
  FORM ELEMENT STYLES
--------------------------------*/
.form-group {
  margin-top: 25px;
  overflow: hidden;
}

.form-control {
  background-color: var(--white);
  color: var(--primary_blue);
  font-size: 16px;
  height: 45px;
  padding: 0 15px;
  border: 1px solid var(--white);
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  margin-bottom: 5px;
}

.form-control:focus,
.form-control:active {
  background-color: var(--white);
  color: var(--primary_blue);
  outline: 0;
  border: 1px solid var(--primary_blue);
  box-shadow:none;
  
}

.form-label {
  font-size: 20px;
  font-family: var(--open-sans);
  color: var(--primary_blue);
}

::placeholder {
  color: #C4C5C7;
  font-size: 18px;
  font-weight: 400;
}

/* ------------------------------
CHECKBOX STYLES
-------------------------------*/
.form-check-input {
  border:2px solid var(--primary_blue);
  border-radius: 3px!important;
  width:25px;
  height:25px;
}
.form-check-input[type="radio"] {
  border:2px solid var(--primary_blue);
  border-radius: 15px!important;
  width:25px;
  height:25px;
  margin-top: 0px;
}
.form-check-input:checked[type="checkbox"] {
  background-image: url(../images/redTickMark.svg);
  background-size: 16px;
  background-repeat: no-repeat;
}
.form-check-input:checked[type="radio"] {
  background-image: url(../images/redTickMark.svg);
  background-size: 16px;
  background-repeat: no-repeat;
}
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--primary_blue);
}
.form-check-input:focus {
	border-color: var(--primary_blue);
	outline: 0;
	box-shadow: none;
}
/* ------------------------------
  LAYOUT & CONTAINERS
--------------------------------*/
.content_area_width_bLogin {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.page_wrapper {
  padding:80px 0 40px;
}
.bg_wrapper {
  position: relative;
  background-image: url(../images/Hero_bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: initial;
}
.mh_100vh {
  min-height: 100vh;
}

.default-bg-color {
  background-color: var(--pattens_blue);
}

.box {
  background-color: var(--white);
  padding: 40px;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.blue_box {
  background-color: var(--primary_blue);
  color:var(--white);
  padding:10px 30px;
}
/* ------------------------------
  MODALS & HEADINGS
--------------------------------*/
.modal-body {
  padding:50px;
}
.modal-head {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 450;
  font-family: var(--font_georgia);
}
.modal-para-bold {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}

.modal-para {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal-buttons {
  display: flex;
  justify-content: center;
  gap:30px;
}


/* ------------------------------
  ERROR STYLES
--------------------------------*/
.hass-error .help-block, .emailerror {
  color: var(--error_red);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  margin: 0;
  display: block;
}

/* ------------------------------
  CUSTOM ELEMENTS & UTILITIES
--------------------------------*/
.dropdown-toggle::after {
  display: none;
}

/* Red underline under heading */
.underline_image {
  position: relative;
}

.login.underline_image::before {
  width: 130px;
}

.underline_image::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  height: 4px;
  width: 166px;
  background: var(--bright_cranberry);
}

/* -----------------------------
  TABLE STYLES
-------------------------------*/
.table_w100 {
    width:100%;
}
table th p {
  margin:0;
}

.bg-color {
    background-color: var(--pattens_blue);
}
.bg-blue {
    background-color: var(--primary_blue);
    color:#fff;
    padding:50px;
}


/* ------------------------------
  RESPONSIVE MEDIA QUERIES
--------------------------------*/
/* @media (min-width: 1440px) {
  .content_area_width_bLogin {
    max-width: 1440px;
  }
}
 
@media (min-width: 1280px) {
  .content_area_width_bLogin {
    max-width: 1280px;
  }
}
 
@media (min-width: 1024px) {
  .content_area_width_bLogin {
    max-width: 1024px;
  }
} */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content_area_width_bLogin {
    padding: 0 60px;
  }
}

@media only screen and (max-width: 767px) {
  .bg_wrapper {
    background-image: none;
  }
  .page_wrapper {
    padding:20px 0;
  }
  .content_area_width_bLogin {
    padding: 20px 0;
  }
  .form-group {
    margin-top:15px;
  }
  .form-label {
    margin-bottom:0;
  }
  .box {
    padding:20px 20px 40px;
  }
  .modal-body {
    padding:50px 20px;
  }
}