/** header-top **/

.header-top{
    position: relative;
    background: var(--secondary-color);
    padding: 11px 0px;
  }
  
  .header-top .outer-container{
    position: relative;
    display: flex;
    align-items: center;    
    justify-content: space-between;
    padding: 0px 50px;
  }
  
  .header-top p,
  .header-top a{
    color: #a8a9b3;
  }
  
  .header-top a:hover,
  .header-top a span{
    color: var(--theme-color);
  }
  
  .header-top a span{
    text-decoration: underline;
    transition: all 500ms ease;
  }
  
  .header-top a:hover span{
    color: #fff;
  }


  .header-top .language-selector span {
    color: black !important;
    text-decoration: none;
  }

  .header-top .language-selector span:hover{
    color: black;
  }
  
  .header-top .support-box,
  .header-top .text{
    position: relative;
    display: block;
    padding-left: 25px;
  }
  
  .header-top .text{
    padding-left: 29px;
  }
  
  .header-top .support-box .icon-box,
  .header-top .text .icon-box{
    position: absolute;
    left: 0px;
    top: 0px;
  }
  
  .header-top .text .icon-box{
    top: 0px;
  }
  
  .header-top .right-column{
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .header-top .guide-box{
    position: relative;
    padding-left: 22px;
    margin-right: 30px;
  }
  
  .header-top .guide-box .icon-box{
    position: absolute;
    left: 0px;
    top: 0px;
  }
  
  .header-top .help-center{
    position: relative;
    padding-left: 26px;
    margin-right: 30px;
  }
  
  .header-top .help-center .icon-box{
    position: absolute;
    left: 0px;
    top: 0px;
  }
  
  .header-top .language-box{
    position: relative;
    padding-left: 28px;
  }
  
  .header-top .language-box .icon-box{
    position: absolute;
    left: 0px;
    top: -2px;
  }
  
  .header-top .language-box .nice-select{
    position: relative;
    font-size: 16px;
    color: #a8a9b3;
    font-family: var(--text-font);
    font-weight: 400;
    text-transform: capitalize;
  }
  
  .header-top .language-box .nice-select:after{
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #a8a9b3;
    border-right: 2px solid #a8a9b3;
    top: 12px;
    right: 5px;
    margin: 0px;
  }
  
  .nice-select .list{
    min-width: 100px;
  }
  
  .header-top .language-box .nice-select .list{
    left: inherit !important;
    right: 0px !important;
  }

  @media (max-width: 768px){
    .header-top .support-box, .header-top .text, .header-top .help-center{
        display: none !important;
    }
    .header-top .outer-container{
        padding-inline: 20px !important;
    }
    .header-top .right-column {
        flex-grow: 1;
        justify-content: space-between;
        padding-left: 10px;
        flex-direction: row-reverse;
    }
  }