﻿@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");

:root {
    --red-color: #cd2027;

    --vendor-primary-color: #002469;
    --vendor-secondary-color: #002469;
    --vendor-tertiary-color: #6699C2;
    --vendor-quaternary-color:rgb(0 44 91);
    --vendor-accent-color: #002469;
    
    --footer-bg-color:#fff;
    --light-grey-bg-color:#f3f3f3;
    --main-links-color:var(--vendor-primary-color);
    --main-bg-color:#efeded;
    --primary-bg-color:#292929;
    --secondary-bg-color:#BF940D;

    --main-txt-dark-color:rgb(0, 0, 0);
    --main-txt-light-color:#fff;
    --main-txt-highlight-color:#ffffff;
    --main-txt-form-color:var(--vendor-primary-color);

    --btn-primary-bg-color:var(--vendor-quaternary-color);
    --btn-primary-bg-hover-color:var(--vendor-primary-color);
    --btn-secondary-bg-color:var(--vendor-quaternary-color);
    --btn-info-bg-color:var(--vendor-quaternary-color);
    --btn-success-bg-color:var(--vendor-quaternary-color);

    --btn-txt-color:#fff;
    --btn-txt-color-dark:var(--vendor-quaternary-color);

    --shadow-main: 0 1px 3px 0px
    rgba(138, 138, 138, 0.2), 0 4px 5px 1px rgba(138, 138, 138, 0.1), 0 9px 19px 0px rgba(138, 138, 138, 0.2), 0 15px 10px 0px rgba(138, 138, 138, 0.1);
}

body {
    background-color: var(--main-bg-color);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    padding-top: 80px;
    color: var(--main-txt-dark-color);
}
a {
    color: var(--main-links-color);
    text-decoration: underline;
  }
.row {
  margin-right: 0;
  margin-left: 0;
}
header {
  color: var(--vendor-secondary-color);
  background-color: #fff; /*var(--vendor-primary-color);*/
  /*border-bottom: 6px var(--vendor-secondary-color) solid;*/
  /*border-top:3px solid var(--vendor-primary-color);*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 77px;
  z-index: 9999;
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.02), 
              0 8px 7px 0px rgba(0, 0, 0, 0.02), 
              0 1px 7px 0px rgba(0, 0, 0, 0.01), 
              0 6px 7px 0px rgba(0, 0, 0, 0.01);
}
.header-logo {
    float: left;
    margin: 4px 8px 0 30px;
    max-height: 60px;
}
.footer-log-container{
    margin: 0 auto 20px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.footer-log-container a{
    max-width: 100%;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    text-align: center;
}
.footer-log-container a img{
  max-width: 100%;
}
/*--GOOGLE TRANSLATE--*/
.translate_btn {
    display: none;
  }
.google-translate {
    float: right;
    margin-top: 12px;
    margin-right: 15px;
    color: var(--vendor-primary-color);
    font-size: 13px;
}
.google-translate select{
    color: var(--vendor-primary-color);
    margin: 4px 0px;
    padding: 4px;
    border-radius: 12px;
}
.google-translate .goog-te-gadget {
    color: var(--vendor-primary-color);
}
.goog-logo-link, .goog-logo-link:link, .goog-logo-link:visited, .goog-logo-link:hover, .goog-logo-link:active {
  font-size: 12px;
  font-weight: bold;
  color: var(--vendor-primary-color) !important;
  text-decoration: none;
}
/*--END GOOGLE TRANSLATE--*/
header h1 {
    color: var(--vendor-secondary-color);
    margin: 0;
    font-size: 24px;
    float: left;
    height: 100%;
    display: flex;
    align-items: center;
}
.h1,
h1 {
  font-size: 2.6em;
}
.h3,
h3 {
  font-size: 1.4em;
}
.header-decor {
    color: var(--vendor-primary-color);
}
.alert-danger {
    color:  var(--main-txt-light-color);
    background-color: var(--vendor-tertiary-color);
    border-color:  var(--vendor-tertiary-color);
  }
.panel-success {
    border: none;
}
.panel {
    margin-bottom: 20px;
    background-color: transparent;
    border-radius: 0px;
    max-width: 1000px;
    margin: 20px auto;
    border: none;
    box-shadow: none;
}
.panel-body {
    padding: 0;
  }
  .panel-footer {
    padding: 10px 15px;
    background-color: var(--footer-bg-color);
    border: none;
    border-radius: 14px;
    max-width: 1000px;
    margin: 20px auto;
  }
p {
  color: var(--main-txt-dark-color);
  margin: 10px 0 30px 0;
  font-size: 1.1em;
}

    p.page-instr {
        background: var(--vendor-accent-color);
        padding: 20px;
        font-size: 1.3em;
        line-height: 1.5em;
        border-radius: 8px;
        color: #fff; /*var(--vendor-primary-color);*/
        margin-bottom: 20px;
    }
    p.page-instr a {
      color: var(--main-txt-light-color);
    }

.status-txt {
    font-style: italic;
    font-size: 1em;
    color: var(--main-txt-dark-color);
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: var(--main-bg-color);
    border: none;
    border-radius: 6px;
    box-shadow: var(--shadow-main);
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
}
.thumbnail h3 {
    font-size: 18px;
    color: var(--main-txt-highlight-color);
    margin: 20px;
}
.thumbnail h3 > span {
    color: var(--vendor-primary-color);
    background: var(--vendor-secondary-color);
    border-radius: 12px;
    padding: 1px 9px;
    font-size: 16px;
}
.caption p {
    margin: 10px 15px;
    font-size: 0.9em;
    color: var(--main-txt-dark-color);
}

.panel-txt-highlight {
    color: var(--main-txt-highlight-color);
    font-size: 13px;
    text-transform: uppercase;
}
.label {
    color: var(--vendor-primary-color);
    font-size: 12px;
    margin-right: 10px;
    background: var(--vendor-secondary-color);
    padding: 3px 0 3px 6px;
    border-radius: 10px;
    font-weight: normal;
    line-height: 16px;
  }
  .label.label-message-info,
  .label.label-reg-message,
  .label.label-safety-message {
    background: #ffeb3b;
    width: 80px;
    font-size: 0.7em;
    display: inline-block;
    color: rgb(0 0 0);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 0 3px 0px;
    border-radius: 10px;
    /*box-shadow: var(--shadow-main);*/
  }
  .label.label-reg-message {
    background: #ffffff;
  }
  .label.label-safety-message {
    background: #ffffff;
  }
  .thumb-btns-holder {
    text-align: center;
    margin: 0;
    /*background: rgba(204, 204, 204, 0.28);*/
    padding: 15px 0;
    border-top: solid rgba(204, 204, 204, 0.64) 1px;
  }
  .thumbnail a > img,
  .thumbnail > img {
    margin-right: auto;
    margin-left: auto;
    width: 91%;
  }

  /*--BUTTONS--*/
  .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 15px;
    border: none !important;
    text-decoration: none;
    color:var(--btn-txt-color);
  }
  .btn:hover{
      color:var(--btn-txt-color);
      background-color: var(--btn-primary-bg-hover-color) !important;
      font-weight: 500 !important;
  }
  .btn-primary {
    /*color:var(--btn-txt-color);
    background-color: var(--btn-primary-bg-color);*/
    color: #fff;
    border:solid 1px rgba(0, 44, 91, 0.2)!important;
    background-color: var(--btn-secondary-bg-color);
  }
  .thumb-btns-holder  .btn-primary {
    color: var(--btn-secondary-bg-color);
    border:solid 1px rgba(0, 44, 91, 0.2)!important;
    background-color: #fff;
  }
  .thumb-btns-holder  .btn-primary:hover {
    color: #fff;
    font-weight: 500 !important;
  }
  .page-instr .btn-primary{
    color:var(--btn-txt-color);
    background-color: var(--btn-secondary-bg-color);
  }
  .btn-info {
    /*background-color: var(--btn-secondary-bg-color);*/
    background-color: #fff;
    border: solid 1px rgba(0, 44, 91, 0.2)!important;
    color: var(--btn-secondary-bg-color);
  }
  .btn-success {
    background-color: var(--btn-secondary-bg-color);
    }
    .btn-danger {
      color: #fff;
      background-color: var(--red-color);
      border-color: var(--red-color);
  }
  /*---closure---*/
  .closure {
    display: block;
    padding: 10px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    box-shadow: var(--shadow-main);
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
  }
  .closure-header {
    border-bottom: solid 1px rgba(0, 44, 91, 0.2);
    margin-bottom: 10px;
    padding: 0;
  }
  .closure-header h3 {
    font-size: 18px;
    /*color: #676666;*/
    color: #333333;
    margin: 10px 0;
  }
  .closure-header h3 > span {
    color: #ffffff;
    background: var(--red-color);
    border-radius: 12px;
    padding: 3px 9px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 10px 0 0;
  }
  .closure-caption p {
    margin: 5px 10px;
    font-size: 0.9em;
    line-height: 1.4em;
    color: var(--main-txt-dark-color);
    padding: 5px;
    padding-left: 140px;
    border-radius: 13px;
    background: rgba(204, 204, 204, 0.2);
    text-align: left;
    position: relative;
    min-height: 32px;
  }
  .closure-caption p .label.label-message-info,
  .closure-caption p .label.label-reg-message,
  .closure-caption p .label.label-safety-message {
    margin-left: -135px;
  }
  .closure-caption .panel-txt-highlight {
    color: var(--vendor-tertiary-color);
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 10px;
    padding: 3px 0 3px 6px;
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
  }
  .closure .thumb-btns-holder {
    text-align: center;
    margin: 0;
    /*background: rgba(204, 204, 204, 0.28);*/
    padding: 15px 0;
    border-top: none;
  }
  .closure .thumb-btns-holder .btn {
    width: 100%;
    margin: 5px 0;
    font-weight: 800;
  }
  .closure-img {
    padding: 0;
  }
  .closure-img a > img,
  .closure-img > img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
  /*---end closure---*/
  
  
  
  /*---forms--*/
  label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    padding-top: 9px;
    font-weight: 500;
    font-size: 1em;
    color: #333333;
    text-transform: uppercase;
  }
  .form-group {
    margin: 10px 0 10px 0 !important;
    background-color: rgb(250 250 250);
    padding: 10px 10px 15px 10px;
    border-radius: 6px;
  }
  .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 11px 12px;
    font-size: 16px;
    border: 1px solid var(--vendor-secondary-color);
    color:var(--main-txt-form-color);
  }
  
  .panel-footer p {
    font-size: 0.9em;
  }
  /*---end forms--*/


  /*---message-history---*/
  .message-history {
    padding: 0 6px;
    margin: 0 0 10px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-main);
    float: left;
    width: 100%;
  }
  .message-history .mh-time {
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    margin-right: 17px;
    background: #e5e5e5;
    padding: 6px 10px;
    border-radius: 14px;
    margin-bottom: 10px;
    float: left;
  }
  .message-history .mh-name {
    padding: 3px;
    margin-bottom: 10px;
    float: left;
    font-size: 1em;
  }
  /*---end message-history---*/
  @media screen and (max-width: 990px) {
    body {
      font-size: 14px;
    }
    .header-logo {
      margin:7px 5px 0 15px;
    }
    header h1 {
      font-size: 20px;
      max-width: 350px;
    }
  }
  @media screen and (max-width: 768px) {
    body {
      font-size: 12px;
    }
  
    header h1 {
      font-size: 14px;
      width: calc(100% - 155px);
    }
    .header-decor {
      /*display: none;*/
    }
    .closure .thumb-btns-holder .btn {
      width: 100%;
      margin: 5px 0;
      font-size: 15px;
    }
    .translate_btn {
      display: block;
      position: fixed;
      width: 42px;
      height: 26px;
      color: var(--main-txt-dark-color);
      background-color: var(--light-grey-bg-color);
      right: 11px;
      padding: 4px 0 0 0;
      top: 19px;
      border-radius: 4px;
      cursor: pointer;
      text-align: center;
    }
    .google-translate {
      position: fixed;
      width: 100%;
      text-align: center;
      background-color: #f3f3f3;
      margin: 0;
      height: 0px;
      padding: 0px 0 0 0;
      z-index: 999999999999;
      left: 0;
      top: 76px;
      overflow: hidden;
      transition: height 300ms ease-in-out;
      box-shadow: var(--shadow-main);
    }
    .google-translate.show {
      height: 75px;
    }
    .google-translate .goog-te-gadget {
       /* color: var(--main-txt-light-color); */
    }
    .google-translate > div {
      transition: all 300ms ease-in;
      margin-top: 0;
      opacity: 0;
    }
    .google-translate.show > div {
      margin-top: 15px;
      opacity: 1;
    }
    .panel-body {
      padding: 0 5px;
    }
    p.page-instr {
      font-size: 1.1em;
    }

    /*---message-history---*/
    .message-history {
    }
    .message-history .mh-time {
        font-size: 11px;
    }
    .message-history .mh-name {
      margin-top: 0;
      clear: both;
    }
    /*---end message-history---*/

    /*---Closures---*/
    .closure-caption {
      margin: 20px 0 0 0px;
      padding: 0;
    }
    .closure-caption p {
      margin: 5px 0px;
      border-radius: 4px;
      padding-left: 149px;
      font-size: 1.1em;
    }
    .closure-caption p .label.label-message-info,
    .closure-caption p .label.label-reg-message,
    .closure-caption p .label.label-safety-message {
      width: 84px;
      font-size: 9px;
      margin: 0;
      margin-right: 5px;
      box-shadow: none;
      padding: 3px 0 3px 0px;
      font-weight: bold;
      margin-left: -145px;
    }
    /*---end closures---*/
  }