/** LOADER ***********************************
**********************************************/

.preloader-wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0; 
  bottom: 0;
  background: rgba(0,0,0,1);
  z-index : 9999;
}

.percentage {
  z-index: 100;
  border: 1px solid #ccc;
  text-align:center;
  color: #fff;
  line-height: 30px;
  font-size : 15px;
}

.loader,
.percentage{
  height: 30px;
  max-width: 500px; 
  border: 2px solid #EC1A3B;
  border-radius: 20px;
  font-weight: 300;
  position: absolute; 
  top: 0; 
  bottom: 0; 
  left: 0; 
  right: 0;
  margin : auto; 
}
.loader:after,
.percentage:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trackbar {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  opacity: 0.99;
}

.loadbar {
  width: 0%;
  height: 100%;
  background: repeating-linear-gradient(
  45deg, 
    #BC102B, 
    #BC102B 10px, 
    #EC1A3B 10px,
    #EC1A3B 20px
  ); /* Stripes Background Gradient */
  box-shadow: 0px 0px 14px 1px #BC102B; 
  position: absolute;
  top: 0;
  left: 0;
  animation: flicker 5s infinite;
  overflow: hidden;
}

@keyframes animation {
  10% {
    opacity: 0.9;
  }
  30% {
    opacity: 0.86;
  }
  60% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.75;
  }
}


/** MENU *************************************
**********************************************/

/*--Wrappers --*/
.navbar {position: inherit;}
#wrapper {
    padding-right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-right: 220px;
}

#sidebar-wrapper {
    z-index: 1000;
    right: 220px;
    width: 0;
    height: 100%;
    margin-right: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
    padding-top: 70px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-left: -220px;
}

/*--Sidebar nav styles --*/

.sidebar-nav {
    position: absolute;
    top: 0;
    right:0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
    font-size: 18px;
    margin: initial;
    padding-top: 8px;
    padding-bottom: 8px;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
    color: #fff;
    background-color: #f5c410 !important;
}
.sidebar-nav li:nth-child(2):before {
    background-color: #f5c410;   
}
.sidebar-nav li:nth-child(3):before {
    background-color: #6195C1;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #EC4C1E;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #1D9FB2;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #671E75;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #00AF66;   
}
.sidebar-nav li:nth-child(8):before {
    background-color: #EC4C1E;   
}
.sidebar-nav li:nth-child(9):before {
    background-color: #666;   
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}

.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;
    line-height: 20px !important;   
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 52px;
    font-size: 20px;
    line-height: 44px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

/*-- Hamburger-Cross --*/

.hamburger {
  position: fixed;
  top: 0px; 
  right: 0px; 
  z-index: 999;
  display: block;
  height: 52px;
  background: transparent;
  border: none;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  padding: 0 20px;
  text-transform: uppercase;
  opacity: .7;
  border-left: 1px solid #000;
  cursor: pointer;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
  background: #ED1C24;
  color: #000;
  opacity: 1;
}
.hamburger svg {
  vertical-align: middle;
  margin-right: 15px;
}

/** TABS *************************************
**********************************************/

section ul.nav-tabs-countries {
  margin: 0 -3vw;
}

section ul.nav-tabs {
    position: absolute;
    bottom: 3vw;
    left: 15vw;
    width: 100%;
    padding: 30px 4vw;
    text-align: center;
    margin-left: initial !important;
}

section .nav-tabs li {
  width: 10%;
  margin: 3px;
  display: inline-block;
}

section .nav-tabs li a {
  background-color: #903015;
  padding: 10px 20px;
}

section .nav-tabs li {
  width: 10% !important;
}
section .nav-tabs li, section .nav-tabs-countries li {
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    width: 25%;
    background-color: inherit;
    height: inherit;
    margin: 0; 
    font-size: 1vw;
    font-weight: bold;
    color: #fff;
    line-height: 1.2vw;
    padding: 10px;
    font-size: 1vw;
    text-align: center;
    display: inline;
}

section .nav-tabs-countries li {
  padding: 15px auto 10px auto;
  opacity: 1;
}



section .nav-tabs-countries li.active {
  opacity: 1; 
  border: none;
}

section .nav-tabs li:hover, section .nav-tabs-countries li:hover {opacity: 1;}
section .nav-tabs li.active, section .nav-tabs-countries li.active {opacity: 1; border: none;}
section .nav-tabs :focus, section .nav-tabs-countries :focus {-webkit-box-shadow: inherit; box-shadow: inherit;}
section .nav-tabs li a, section .nav-tabs-countries li a {text-decoration: none;}
section .nav-tabs img, section .nav-tabs-countries img {width: 5vw;}
}
