﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
.btn.tertiary, .btn.secondary, .btn.primaryOutlined, .btn, btn.primary, a.btn, a.btn.primary {
  align-items: center;
  border: 0;
  border-radius: 25px;
  color: white;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  min-width: 8.4375rem;
  padding: 11px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  width: 100%;
}
.btn:focus, btn.primary:focus, .btn:focus-visible, btn.primary:focus-visible {
  outline: none;
}
.btn:hover, btn.primary:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  color: white;
}
.medium.btn, btn.medium.primary {
  height: 40px;
}
.small.btn, btn.small.primary {
  height: 30px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .btn.tertiary, .btn.secondary, .btn.primaryOutlined, .btn, btn.primary, a.btn, a.btn.primary {
    width: auto;
  }
}

.btn, btn.primary, a.btn, a.btn.primary {
  background: #1a1a1a;
  color: #fff;
}
.btn:active, btn.primary:active, a.btn:active, a.btn.primary:active {
  background: #666;
}
.btn:disabled, btn.primary:disabled, a.btn:disabled, a.btn.primary:disabled {
  background: #e5e5e5;
  color: #999999;
  cursor: not-allowed;
}
.btn:disabled:hover, btn.primary:disabled:hover, a.btn:disabled:hover, a.btn.primary:disabled:hover {
  box-shadow: none;
}

.btn.primaryOutlined {
  background: #fff;
  border: 1px solid black;
  border-style: inset;
  color: #000;
}
.btn.primaryOutlined:active {
  background: #B0B0B0;
}
.btn.primaryOutlined:disabled {
  background: #fff;
  border-color: #999;
  color: #999999;
  cursor: not-allowed;
}
.btn.primaryOutlined:disabled:hover {
  box-shadow: none;
}

.btn.secondary {
  background: #ED6B06;
  color: #000;
}
.btn.secondary:active {
  background: #F58C49;
}
.btn.secondary:disabled {
  background: #e5e5e5;
  color: #999999;
  cursor: not-allowed;
}
.btn.secondary:disabled:hover {
  box-shadow: none;
}

.btn.tertiary {
  background: #fff;
  color: #000;
}
.btn.tertiary:active {
  background: #d4d4d4;
}
.btn.tertiary:disabled {
  background: #e5e5e5;
  color: #999999;
  cursor: not-allowed;
}
.btn.tertiary:disabled:hover {
  box-shadow: none;
}

.formControlInputWrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.formControlInputWrapper label {
  background: white;
  color: rgb(117, 117, 117);
  cursor: text;
  font-size: 15px;
  left: 12px;
  padding: 0 2px;
  position: absolute;
  top: 12px;
  z-index: 1000;
  transition: all 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.active label, .hasContent label {
  cursor: default;
  font-size: 12px;
  top: -8px;
}

.active .inputWrapper, .active .inputWrapper:hover {
  border: 1px solid #2ac3f5;
}

.inputWrapper {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 4px;
  display: inline-flex;
}
.inputWrapper:hover {
  border: 1px solid rgb(0, 0, 0);
}
.inputWrapper input {
  border-radius: 4px;
  padding: 8.5px 0px 8.5px 14px;
  outline: 0;
  align-items: center;
  border: 0;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.00938em;
  line-height: 1.4375em;
  position: relative;
}
.inputWrapper .inputIcon {
  align-items: center;
  color: rgb(117, 117, 117);
  display: flex;
  margin-left: 12px;
  margin-right: 12px;
}

.inputHelper {
  color: #db1515;
  font-size: 0.75rem;
  margin: 4px 14px 0;
}

.form-control {
  border: 1px solid #666;
  border-radius: 6px;
}
.form-control:hover {
  border-color: #000;
}
.form-control:focus {
  border-color: #1976D2;
  box-shadow: none;
}

.frontend-feedback-invalid {
  color: red;
  font-size: 12px;
}

input[type=radio] {
  margin: auto;
}

.container {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}

.siteGrid {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
}
@media all and (min-width: 1024px) {
  .siteGrid {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

.flexRow {
  display: flex;
  flex-direction: row;
}

.flexColumn {
  display: flex;
  flex-direction: column;
}

.flex-JustifyContentCenter {
  justify-content: center;
}

.flex-Align-Center {
  align-items: center;
}

.gap4 {
  gap: 4px;
}

.gap16 {
  gap: 16px;
}

.gap24 {
  gap: 24px;
}

.alignSelfCenter {
  align-self: center;
}

.justifyContentSpaceBetween {
  justify-content: space-between;
}

.justifyContentSpaceAround {
  justify-content: space-around;
}

.grid2Columns {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .grid2Columns {
    grid-template-columns: 1fr 1fr;
  }
}

html {
  font-family: "Roboto", sans-serif !important;
  font-size: 14px !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif !important;
  margin-top: 0;
}

h1 {
  font-weight: 700;
}

.sectionBox {
  border: 1px solid #e3e3e3;
  margin-bottom: 16px;
  padding: 16px;
}
.sectionBox label {
  font-weight: normal !important;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

body {
  min-height: 100vh;
  display: flex;
}

html {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
@media (min-width: 768px) {
  html html {
    font-size: 16px;
  }
}

.group-input {
  display: flex;
}

.input-prepend {
  align-items: center;
  background: #eee;
  border: 1px solid #666;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  display: flex;
  margin-right: -1px;
  padding-left: 10px;
  padding-right: 10px;
}

.group-input div:not(:first-child) input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-control {
  border: 1px solid #666;
  border-radius: 6px;
}

.form-control:hover {
  border-color: #000;
}

.form-control:focus {
  border-color: #1976D2;
  box-shadow: none;
}

footer {
  font-size: 12px;
  border-top: 1px solid #707070;
  padding-top: 16px;
}

.itemHeader {
  display: none;
}
@media (min-width: 1024px) {
  .itemHeader {
    display: grid;
    grid-template-columns: 200px 1fr 270px 220px;
    grid-template-areas: "area description time button";
    border-bottom: 1px solid black;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
}

.item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .item {
    grid-template-columns: 200px 1fr 270px 220px;
    grid-template-areas: "area description time button";
  }
}

.itemArea {
  display: flex;
  grid-area: area;
}

.itemDescription {
  display: flex;
  grid-area: description;
  padding-bottom: 8px;
  padding-top: 8px;
}
@media (min-width: 1024px) {
  .itemDescription {
    padding: 0;
  }
}

.itemTime {
  display: flex;
  flex-direction: column;
  grid-area: time;
  width: 270px;
}

.itemButton {
  display: flex;
  grid-area: button;
  justify-content: end;
}

.areaTitle {
  border-bottom: 1px solid black;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .areaTitle {
    border-bottom: none;
    margin-bottom: auto;
  }
}

.areaTitle:not(:first-of-type) {
  margin-top: 64px;
}

#activeEndDateEditor .btn {
  background: none;
  color: black;
}

fieldset label {
  margin-bottom: 0;
}

/*specific form solution*/
#company_contact_row,
#remove_row,
#stamdata, #numbers, #termsDiv, #urgencyDiv, #submitDivPdf, #submitDiv, #nextDiv, #signatureDiv {
  display: none;
}

#NpStartDateDiv {
  display: none;
}

.validation-summary-valid {
  display: none;
}

#detailsDiv {
  display: none;
}

.error {
  display: none;
}

.errorIcon,
.invalidUiccidWarning {
  display: none;
}

.field-validation-valid {
  display: none;
}

input,
select,
textarea {
  max-width: 280px;
}

#sim-modal-info:hover {
  cursor: pointer;
}

.topBar {
  align-items: center;
  display: grid;
  grid-template-areas: "logo title language";
  grid-template-columns: min-content 1fr auto;
  margin: 16px 0;
}

.topBar a {
  text-decoration: none;
}

.topLogo {
  grid-area: logo;
}

.topTitle {
  grid-area: title;
}

.topLanguage {
  grid-area: language;
}

.frontend-feedback-invalid {
  display: none;
  background: #FFE6E6 url("../../icons/icon_cancel.svg") no-repeat 10px 5px;
  background-size: 25px 25px;
  border-left: 4px solid #DB1515;
  color: #000;
  font-size: 16px;
  margin-top: 5px;
  padding: 5px 5px 5px 45px;
}

.width280 {
  max-width: 280px;
}

.width30 {
  width: 30%;
  max-width: 30%;
}

.addRowLink:hover, .removeRowLink:hover {
  cursor: pointer;
}
