body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #3f3f3f;
    margin: 0px;
}

.bgClass2 {
    background-color: #e8e9ea;
    height: 45px;
}

.logoDiv img{
    height: 5rem;
}

.logoDiv{
    text-align: center;
    border: 1px solid #e5e2e2;
    padding: 10px;
    border-radius: 5px;
}

.bgClass2 .headingDetail {
    padding: 0px 22px;
}

.headingCl {
    font-size: 26px;
    color: #188bee;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    display: inline-block;
}

.headingSmall {
    font-weight: 600;
    vertical-align: text-bottom;
    margin-left: 14px;
    font-size: 16px;
    display: inline-block;
}

.faright {
    display: inline-block;
    vertical-align: super;
}

#mainContent {
    padding: 12px;
}

.lableHeading {
    margin-top: 15px;
    font-size: 22px;
    color: #716d6d;
}

.text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-align: center;
    color: #000;
    width: 275px;
    padding: 10px;
    border: 2px solid #dfdfdf;
    /* text-transform: uppercase; */
    border-radius: 5px;
    width: 100%;
    height: 45px;
}

.btn {
    background: #188bee;
    padding: 10px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #fff;
    display: block;
    width: 100%;
    border: 0px;
    font-size: 23px;
    -webkit-appearance: none;
    border-radius: 5px;
    height: 50px;
}

strong {
    font-size: 13px;
}

#footer {
    background: #188bee;
    padding: 10px;
    color: #fff;
    font-size: 11px;
    margin-top: 10px;
}

#footer small {
    font-size: 10px;
}

#footer small span {
    color: #fff
}

#languageSelection {
    background: #6f7174;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    height: 50px;
}

.callNum {
    color: #188bee;
}

.right1 {
    color: #a9a9a9;
}

.right2 {
    color: #807c7c;
}

i.fa.fa-angle-right {
    font-size: 20px;
    vertical-align: text-top;
}

#callNow {
    font-weight: 600;
    color: #3f3f3f;
}

.siteUrlText {
    text-decoration: none;
    font-size: 13px;
    color: #000;
}

#txtHint {
    color: #3f3f3f;
    font-size: 16px;
    border: 1px solid #d8d8d8;
    padding: 11px;
    border-radius: 5px;
}

#txtHint p {
    margin: 0;
    padding: 0;
}

.faultDescription {
    /* font-size: 600; */
    font-size: 1.6rem;
}

.supportCall {
    margin-top: 20px;
}

#mainContent input:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(24, 137, 236, 0.4);
}

#mainContent .is-invalid {
    border-color: #dc3545;
}

#mainContent .invalid-feedback {
    color: #dc3545;
    margin-top: 2px;
    margin-left: 1px;
    font-size: 14px;
}

#mainContent .is-invalid:focus {
    box-shadow: none !important;
}

#btnSing {
    width: 50px;
    height: 34px;
    background: url(../img/sing-flag.png) no-repeat;
    float: left;
    margin-right: 5px;
}

#btnEng {
    width: 50px;
    height: 34px;
    background: url(../img/eng-flag.png) no-repeat;
    float: left;
    margin-right: 5px;
}

#btnEsp {
    width: 50px;
    height: 34px;
    background: url(../img/esp-flag.png) no-repeat;
    float: left;
    margin-right: 5px;
}

#btnGer {
    width: 50px;
    height: 34px;
    background: url(../img/ger-flag.png) no-repeat;
    float: left;
    margin-right: 5px;
}

#btnFre {
    width: 50px;
    height: 34px;
    background: url(../img/fre-flag.png) no-repeat;
    float: left;
    margin-right: 5px;
}

.fa-spinner {
    font-size: 30px;
}

.btn:hover {
    color: white;
}

#container {
    width: 33%;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    #container {
        width: 100%;
    }
}

@media only screen and (min-width: 319px) and (max-width : 568px) {
    
    #btnEng,
    #btnEsp,
    #btnGer,
    #btnFre,
    #btnSing {
      width: 40px;
      height: 29px;
      margin-right: 5px;
    }

    .bgClass2 .headingDetail{
        padding-left: 10px;
    }

    .headingSmall{
        margin-left: 5px;
        font-size: 14px;
    }

    .faright {
        display: inline-block;
        position: absolute;
        margin-top: 9px;
        margin-left: 5px;
    }

    .i.fa.fa-angle-right{
        vertical-align: unset;
        font-size: 17px;
    }
  }


  .definitionDiv, .descriptionDiv, .remarksDiv{
      margin-bottom: 12px;
  }

  /** Toaster css **/

  #snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgb(238, 55, 55);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    font-size: 17px;
    border-radius: 5px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }