:root {
  --secondary-color: #efefef;
  --silver: #c8c8c8;
  --input-background: #f5f5f5;

  --main-color: #06c755;
  --secondary-color-link: #1cb8b8;

  /* --icon-filter: invert(11%) sepia(93%) saturate(7247%) hue-rotate(359deg) brightness(100%) contrast(123%); */
  --secondary-icon-filter: invert(89%) sepia(21%) saturate(0%)
    hue-rotate(238deg) brightness(91%) contrast(82%);
}

body {
  margin: 0;
  font-family: sf-pro;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-image: url(../images/top-ribbon.png);
  background-repeat: repeat-x;
  background-position: top center;
}

.main-content {
  flex: 1;
}

@font-face {
  font-family: sf-pro;
  src: url(../sf-pro/SFPROREGULAR.OTF);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: sf-pro;
  src: url(../sf-pro/SFPROBOLD.OTF);
  font-weight: 700;
  font-style: normal;
}

.input-background {
  background-color: var(--input-background);
}

.main-text {
  color: var(--main-color);
}

.center-horizontally {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.submit-button {
  background-color: var(--main-color);
  border-radius: 5px;
  color: white;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

/* Skeleton */

@keyframes skeleton-animation
{
  
  0%
  {
    right: 100%;
  }
  
  50%
  {
    right: -128px;
  }
  
  100%
  {
    right: 100%;
  }
  
}

.skeleton {
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border-color: transparent;
}

.skeleton:before {
  display: block;
  position: absolute;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  content: "";
  animation: skeleton-animation 1.25s infinite;
  top:0;
  z-index: 2;
}

.skeleton:after {
    content: "";
  width: 100%;
  height: 100%;
  position: absolute;
    top: 0;
    left: 0;
    background-color: #efefef;
    
}

/* End Skeleton */

/* Form Validation */

.required:after {
  content: "*";
  margin-left: 5px;
  margin-right: 5px;
  color: red;
}

.form-validation textarea.error,
.form-validation input.error {
  border-color: #e63757;
}

.form-validation label.error {
  color: #e63757;
}

.form-validation .custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form-validation .custom-checkbox .error {
  display: block;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.error {
    font-size: 1rem;
}

label.error {
    font-size: 80%;
    margin-top: 10px;
    display: block;
    width: 100%;
    color: red;
    line-height: 1;
}

.field-error {position: relative; margin-bottom: 35px !important;}

label.error {position: absolute;bottom: -32px;}

/* End Form Validation */

.account:after {content: none;}

.order-table td {
  border: 6px solid transparent;
  border-left: none;
  border-right: none;
}

@media (min-width: 992px) {
  .w-50-lg {
    width: 50% !important;
  }
}

.staging {background-color: red;color: white;position: absolute;padding: 0px 20px;transform: rotate(-45deg);top: 11px;left: -22px;z-index: 3;}