
html {
  height: 100%;
  width: 100%;
  font-family: "Montserrat",sans-serif;
}

body {
  height: 100%;
  margin: 0;
  background-color: #F2F7FA;
}

.page-container {
  height: 100vh;
  margin: 0;
  background-image: linear-gradient(90deg,#371a90,#2f4cce);
}


#container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255,255,255, 0.9);
  padding: 20px 40px;
  border-radius: 50px;
}

#configurator-page {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255,255,255, 0.9);
  padding: 20px 40px;
  height: 95%;
  width: 65%;
}

a:link {
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: black;
}

a:active {
  color: black;
}

#configurator-container {
  display: grid;
  height: 88%;
  grid-template-rows: 20% 10% 75% 10%;
}

.configurator-logo-container {
  display: grid;
  justify-content: left;
}

.configurator-info-container {
  border-radius: 5px;
  background-color: #F2F4F7;
  color: white;
}

.configurator-info {
  padding-left: 10px;
  text-align: left;
  font-weight: bold;
  font-size: 12px;
  color: #4B4B4B;
}

#logo {
  width: 225px;
  margin: 75px;
}

#configurator-logo { 
  width: 75px;
}

.application-title {
  color: #3280C3;
  font-size: 25px;
}

.configurator-header { 
  display: grid;
  grid-template-columns:65% 35%;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

.configurator-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #4B4B4B;
}

.configure-title {
  font-weight: bold;
  color: #4B4B4B;
  font-size: 20px;
}

#configurationcontainer {
  height: 60vh;
  overflow: hidden;
  overflow-y: scroll;
  font-size: 13px;
  padding-left: 10%;
  padding-right: 10%;
}

.loaderdiv {
  display: grid;
  align-items: center;
  justify-items: center;
}

#configurationfooter {
  border-radius: 5px;
  height: 100%;
}

.configuration-footer-inner-container {
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
  height: 100%;
  grid-template-columns: 75% 25%;
}

.ltxpreview-row {
  display: grid;
  padding-top: 15px;
  grid-template-columns: 25% 75%;
}

.ltxpreview-fieldlabel{ 
  float: left;
  color: #606266;
  padding-right: 10px;
  display: grid;
  align-content: center;
  text-align: left;
}

.ltxpreview-input {
  height: 40px !important;
  border: 1px solid #C0C4CC !important;
}

.ltxpreview-selectcontainer {
  height: 40px !important;
  border: 1px solid #C0C4CC !important;
}

.hide { 
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow { 
  top: 5px !important;
}

.select2-container { 
  max-width: 90vh !important;
}

.select2-selection__rendered { 
  padding-top: 5px !important;
  text-align: left !important;
}

.price {
  font-weight: bold;
  font-size: 30px;
  text-align: left;
  color: #4B4B4B;
}

.price-label {
  color: #C0C4CC;
  font-size: 15px;
  font-weight: normal;
}

.save-bttn {
  padding: 10px;
  background-color: #e71e7a;
  border: none;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  height: 50px;
  width: 200px;
  cursor: pointer;
}

.save-container { 
  display: grid;
  justify-content: right;
  align-content: center;
}

.configurationmessages { 
  display: none;
  text-align: center;
  font-weight: bold;
}

.warning-bar {
  background-color: #F28F19;
  padding: 10px;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}


.error-bar {
  background-color: #DC3545;
  padding: 10px;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}


.message-bar {
  background-color: #32BAEC;
  padding: 10px;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.feedback-code { 
  font-weight: normal;
  font-size: 10px;
  opacity: 0.6;
}

.select2-results__option { 
  font-size: 13px;
}

.configuration-info-info { 
  font-weight: normal;
}

.loader {
  border: 1px solid #f3f3f3; /* Light grey */
  border-top: 1px solid #E71F7B; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 500ms linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}