/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
html,
body {
  height: 100%;
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
}

.width-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-15 {
  padding: 15px;
}

.height-container {
  height: calc(100% - 50px);
}

header .greeting {
  font-weight: 300;
  font-size: 15px;
  color: #ffffff;
}

header .seperator {
  margin: 0 10px;
  height: 30px;
  width: 1px;
  background-color: #ffffff;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-title {
  color: var(--primary-dark-shade, #011c3f);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}

.title-two {
  color: var(--primary-dark-shade, #011c3f);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.field {
  margin-top: 15px;
}

.input-fields {
  border-radius: 6px;
  background: #e8e8e8;
  outline: none;
  border: 0;
  box-sizing: border-box;
  padding: 15px 25px;
  width: 100%;
  font-size: 14px;
  line-height: 15px;
}

.input-btn {
  border-radius: 6px;
  background-color: #002f6c;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  height: 45px;
  outline: 0;
  border: 0;
}

.input-btn:disabled {
  background-color: #b4b4b4 !important;
}

.form-container {
  max-width: 50%;
  width: 400px;
}

.input-label {
  color: var(--primary-dark-shade, #011c3f);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.input-group-container {
  display: flex;
  align-items: center;
  justify-content: start;
}

.input-group-addon {
  color: #8f8f8f;
  font-size: 14px;
  line-height: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.padding-0 {
  padding: 0;
}

.padding-left-0 {
  padding-left: 0;
}

.max-width-300 {
  max-width: 300px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-5 {
  margin-top: 5px;
}

.max-width-150 {
  max-width: 150px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

#user-details-container {
  margin-top: 15px;
}
.user-details-item {
  color: var(--primary-dark-shade, #011c3f);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

#error {
  color: red;
  font-size: 11px;
  font-style: italic;
  font-weight: 600;
}

.display-flex {
  display: flex;
}

.gap-15 {
  gap: 15px;
}

.max-width-180 {
  max-width: 180px;
}

.max-width-125 {
  max-width: 125px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.open-model {
  visibility: visible;
  opacity: 1;
  z-index: 15001;
}

.popup {

  padding: 30px;
  background: #fff;
  border-radius: 5px;
  width: 50%;
  position: relative;
  transition: all 5s ease-in-out;
}


.popup .close {
  position: absolute;
  top: 0px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 90%;
  }
  .popup{
    width: 90%;
  }

  .popup-title, .rupee {
    font-size: 16px !important;
  }


}

.rupee {
    font-weight: 600;
    font-size: 18px !important;
}

.popup-title {
  color: var(--primary-dark-shade, #011C3F);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.font-weight-500 {
    font-weight: 500;
}

.rupee {
  color: var(--secondary-green, #78AA00);
  font-size: 25px;
  font-style: normal;
  line-height: normal;
}
