@charset "utf-8";


body, #GeneralBody{
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: sans-serif;
}

body::-webkit-scrollbar-track, select::-webkit-scrollbar-track, .Scrollable::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 7px rgba(24,37,51,1);
    background-color: #182533;
}

body::-webkit-scrollbar, select::-webkit-scrollbar, .Scrollable::-webkit-scrollbar
{
    width: 7px;
    background-color: #182533;
}

body::-webkit-scrollbar-thumb, select::-webkit-scrollbar-thumb, .Scrollable::-webkit-scrollbar-thumb
{
    background-color: #F1F3F4;
}
.Scrollable2::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 7px rgba(255,255,255,1);
    background-color: #ffffff;
}

.Scrollable2::-webkit-scrollbar
{
    width: 7px;
    background-color: #ffffff;
}

.Scrollable2::-webkit-scrollbar-thumb
{
    background-color: #cccccc;
}
.Centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}
.Scrollable, .Scrollable2{
  overflow-y: scroll;
}
.Button{
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border: 0px solid #000000;
  color: #ffffff;
  cursor: pointer;
  transition: .5s;
  padding: 5px 15px 5px 15px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #F1F3F4 inset;
}
textarea:focus, input:focus,button ,.Button, select{
    outline: none;
}
p{
  text-overflow: ellipsis;
}
p:hover{
  overflow: visible;
}
p, input, div{
  -webkit-tap-highlight-color: transparent;
}
a{
  text-decoration: none;
}
.rainbow {
   /* Chrome, Safari, Opera */
  -webkit-animation: rainbow 3s infinite; 
  
  /* Internet Explorer */
  -ms-animation: rainbow 3s infinite;
  
  /* Standar Syntax */
  animation: rainbow 3s infinite; 
}

/* Chrome, Safari, Opera */
@-webkit-keyframes rainbow{
  0%{color: #375379;}  
  25%{color: #B92014;} 
  50%{color: #375379;}  
  75%{color: #B92014;} 
  100%{color: #375379;}
}
/* Internet Explorer */
@-ms-keyframes rainbow{
   0%{color: #375379;}  
  25%{color: #B92014;} 
  50%{color: #375379;}  
  75%{color: #B92014;} 
  100%{color: #375379;} 
}

/* Standar Syntax */
@keyframes rainbow{
   0%{color: #375379;}  
  25%{color: #B92014;} 
  50%{color: #375379;}  
  75%{color: #B92014;} 
  100%{color: #375379;}
}
.DesactiveStyle{
  opacity: .6;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}  
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
/*--------------------------------------------*/
#LoadContainer{
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,1);
}
#LoadContainer #LoadSubContainer{
  margin: 0;
  padding: 0;
  display: block;
}
#LoadContainer #LoadSubContainer img,#LoadContainer #LoadSubContainer p{
  margin: auto;
  padding: 0;
  display: block;
  text-align: center;
}
#LoadContainer #LoadSubContainer #LoadText{
  color: #666666;
}
/*--------------------------------------------*/
#MessageContainer{
  position: fixed;
  display: block;
  display: none;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #444444;
  background-color: rgba(255,255,255,.95);
  z-index: 200;
}
#MessageContainer div{
  text-align: center;
  width: 85%;
}
#MessageContainer div p{
  margin: auto;
  padding: 0;
  display: block;
  margin-bottom: 1%;
}
#MessageContainer div button{
  color: #ffffff;
  background-color: #444444;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  -webkit-box-shadow: 10px 10px 31px -10px rgba(255,255,255,1);
  -moz-box-shadow: 10px 10px 31px -10px rgba(255,255,255,1);
  box-shadow: 10px 10px 31px -10px rgba(255,255,255,1);
  border: 0px solid #000000;
  font-size: 2em;
  padding-left: 2%;
  padding-right: 2%;
  cursor: pointer;
  transition: .5s;
}
#MessageContainer div button:hover{
  transform: translate(1.1);
}
/*--------------------------------------------*/
#GeneralFeed{
  margin: 0;
  padding: 0;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #182533;
}
#GeneralFeed #GeneralText{
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  color: #777777;
}
#GeneralFeed #GeneralText a{
  color: #aaaaaa;
}
#GeneralFeed #GeneralText a #FeedRidder{
  font-family: "PrincipalFont";
  color: #aaaaaa;
}
/*---------------------------------*/
.BackButton{
  position: fixed;
  background-color: #182533;
  color: #ffffff;
  z-index: 50;
}
.BackButton:hover,
.BackButton:focus{
  transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  background-color: #D71919;
}
@media screen and (min-width: 701px) {
  /*--------------------------------------------*/
  #LoadContainer #LoadSubContainer{
    width: 50%;
  }
  #LoadContainer #LoadSubContainer #LogoLoad{
    width: 100px;
  }
  #LoadContainer #LoadSubContainer #LoadLoad{
    width: 40px;
    margin-top: 2%;
  }
  /*--------------------------------------------*/
  #MessageContainer div p{
    font-size: 4em;
  }
  /*--------------------------------------------*/
  #GeneralFeed{
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: .9em;
  }
  /*--------------------------------------------*/
  .BackButton{
    font-size: 1.5em;
    bottom: 1%;
    right: 1%;
  }
}
@media screen and (max-width: 700px) {
  /*--------------------------------------------*/
  #LoadContainer #LoadSubContainer #LogoLoad{
    width: 200px;
  }
  #LoadContainer #LoadSubContainer #LoadLoad{
    width: 50px;
    margin-top: 10%;
  }
  /*--------------------------------------------*/
  #MessageContainer div p{
    font-size: 2em;
  }
  /*--------------------------------------------*/
  #GeneralFeed{
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: .9em;
  }
  /*--------------------------------------------*/
  .BackButton{
    font-size: 1.2em;
    bottom: 1%;
    right: 1%;
  }
}