

::-webkit-scrollbar{
  display: none;
}

.r8s-scene{
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
    }

    .r8s-scene-on {
        display: inline-block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
    }

.r8s-loader{
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 64px;
  height: 64px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: inline-block;
}

.r8s-loader-medium{
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 48px;
  height: 48px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: inline-block;
}

.r8s-loader-small{
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: inline-block;
}

.r8s-loader-tiny{
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #3498db;
  width: 16px;
  height: 16px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: inline-block;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

    .r8s-switch {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 17px;
    }

        .r8s-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .r8s-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .r8s-slider:before {
            position: absolute;
            content: "";
            height: 13px;
            width: 13px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

    input:checked + .r8s-slider {
        background-color: #2196F3;
    }

    input:focus + .r8s-slider {
        box-shadow: 0 0 1px #2196F3;
    }

    input:checked + .r8s-slider:before {
        -webkit-transform: translateX(13px);
        -ms-transform: translateX(13px);
        transform: translateX(13px);
    }

    /* Rounded sliders */
    .r8s-slider.round {
        border-radius: 17px;
    }

        .r8s-slider.round:before {
            border-radius: 50%;
        }

    .r8s-textbox{
        background-color: #ffffff;
        padding: 7px;
        padding-left: 5px;
        padding-right: 5px;
        border: solid 1px #9a9a9a;
        width: 100%;
        font-family: sans-serif, serif, Tahoma, Arial;
        font-size: 14px;
    }

    .r8s-textbox:hover{
        border-bottom: solid 1px #e00023;
    }

.r8s-fill-white {
        fill: white;
    }

    .r8s-hover:hover {
        cursor: pointer;
    }

    .r8s-background-red {
        background-color: #e00023;
        color: #ffffff;
    }

    .r8s-red {
        color: #e00023;
    }

    .r8s-white {
        color: #ffffff;
    }

    .r8s-element-active {
        border: solid 1px #e00023;
    }

        .r8s-element-active:hover {
            cursor: pointer;
        }

    .r8s-button {
        border: 0px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-family: sans-serif, serif, Tahoma, Arial;
        font-size: 14px;
        background-color: #777777;
        color: #ffffff;
        display: inline-block;
        -webkit-appearance: none;
    }

.r8s-button-red {
        border: 0px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-family: sans-serif, serif, Tahoma, Arial;
        font-size: 14px;
        background-color: #e00023;
        color: #ffffff;
        display: inline-block;
        -webkit-appearance: none;
    }

    .r8s-label {
        font-family: sans-serif, serif, Tahoma, Arial;
        font-size: 14px;
        display: inline-block;
        color: #4a4a4a;
    }

    .r8s-label-small {
        font-family: sans-serif, serif, Tahoma, Arial;
        font-size: 12px;
        display: inline-block;
        color: #4a4a4a;
    }

.r8s-tabbar{
  width: 100%;
  height: 54px;
  background-color: #424242;
  display: flex;
  flex-direction: row;
}

.r8s-tabbar-item{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #ffffff;
  background-color: #777777;
  padding-left: 20px; padding-right: 20px;
}

.r8s-tabbar-item-selected{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #ffffff;
  background-color: #e00023;
  padding-left: 20px; padding-right: 20px;
}

.r8s-menu{
  width: 100%;
}

.r8s-menu-item{
  display: flex;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #ffffff;
  background-color: #454545;
  transition: background-color 0.3s;
}

.r8s-menu-item div.block{
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
}

.r8s-menu-item div.round-block{
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #4a4a4a;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
}

.r8s-menu-item div.text{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
}

.r8s-menu-item.active{
  background-color: #e00023;
}
  
.r8s-menu-item:hover{
  cursor: pointer;
  background-color: #e00023;
}

.r8s-social-post{
  display: flex;
  flex-direction: row;
}

.r8s-social-post div.image{
  width: 84px; height: 84px;
  padding: 10px;
  display: inline-block;
}

.r8s-social-post div.image img{
  width: 64px; height: 64px;
  border-radius: 7px;
}

.r8s-social-post div.content{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.r8s-social-post div.content div.text{
  border: solid 1px #9a9a9a;
  border-radius: 7px;
  width: 100%;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #4a4a4a;
  background-color: #ffffff;
  padding: 15px;
}

.r8s-social-post div.content div.text div.name{
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #4a4a4a;
  font-weight: bold;
}

.r8s-social-post div.content div.date{
  padding-top: 2px;
  padding-left: 0px;
  width: 100%;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
  color: #777777;
}

.r8s-social-post-mobile{
  display: flex;
  flex-direction: row;
}

.r8s-social-post-mobile div.image{
  width: 48px; height: 48px;
  padding: 5px;
  display: inline-block;
}

.r8s-social-post-mobile div.image img{
  width: 38px; height: 38px;
  border-radius: 7px;
}

.r8s-social-post-mobile div.content{
  width: 100%;
  padding: 5px;
  display: flex;
  flex-direction: column;
}

.r8s-social-post-mobile div.content div.text{
  border: solid 1px #9a9a9a;
  border-radius: 7px;
  width: 100%;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #4a4a4a;
  background-color: #ffffff;
  padding: 8px;
}

.r8s-social-post-mobile div.content div.text div.name{
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  color: #4a4a4a;
  font-weight: bold;
}

.r8s-social-post-mobile div.content div.date{
  padding-top: 2px;
  padding-left: 15px;
  width: 100%;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
  color: #777777;
}

.r8s-email-item{
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #ffffff;
  border-left: solid 3px #ffffff;
  border-bottom: solid 1px #9a9a9a;
}

.r8s-email-item div.content{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
}

.r8s-email-item div.content div.title{
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 18px;
  padding: 5px;
}
.r8s-email-item div.content div.title.new{
  font-weight: bold;
}

.r8s-email-item div.content div.text{
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
  padding: 5px;
}

.r8s-email-item div.content div.text.new{
  font-weight: bold;
}

.r8s-email-item div.info{
  width: 64px;
  height: 100%;
  display: flex;
  padding: 10px;
}

.r8s-email-item div.date{
  width: 84px;
  height: 100%;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
  color: #4a4a4a;
  padding-top: 10px;
  padding-right: 10px;
  text-align: right;
}

.r8s-email-item.selected{
  background-color: #dedede;
  border-left: solid 3px #e00023;
}

.r8s-email-item:hover{
  cursor: pointer;
  background-color: #dedede;
  border-left: solid 3px #e00023;
}

.r8s-dropdown {
  position: relative;
  display: inline-block;
}

.r8s-dropbtn {
  background-color: #ffffff;
  color: #4a4a4a;
  padding: 7px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex; flex-direction: row;
  border: solid 1px rgba(0,0,0,0.2);
}

.r8s-dropbtn input{
	display: inline-block; 
  background-color: 
  transparent; 
  color: #4a4a4a; 
  border: 0px; 
  outline: none;
  -webkit-appearance: none;
}

.r8s-dropdown:hover .r8s-dropbtn {

}

.r8s-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.r8s-dropdown-content div {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
}

.r8s-dropdown-content div:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.r8s-dropdown:hover .r8s-dropdown-content {
  display: block;
}

.r8s-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.r8s-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.r8s-checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.r8s-checkbox:hover input ~ .r8s-checkbox-checkmark {
  background-color: #ccc;
}

.r8s-checkbox input:checked ~ .r8s-checkbox-checkmark {
  background-color: #e00023;
}

.r8s-checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.r8s-checkbox input:checked ~ .r8s-checkbox-checkmark:after {
  display: block;
}

.r8s-checkbox .r8s-checkbox-checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.r8s-select-grow{
  transform: scale(1);
  transition: all ease 0.3s;
}

.r8s-select-grow:hover{
  transform: scale(1.2);
  cursor: pointer;
}

.r8s-table{
  width: 100%;
  box-sizing: border-box;
  border: 0px;
}

.r8s-table tr th{
  text-align: left;
  padding: 10px;
  color: #ffffff;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  background-color: #4CAF50;
}

.r8s-table tr th.standard{
  background-color: #777777;
}

.r8s-table tr td{
  padding: 10px;
  color: #4a4a4a;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
}

.r8s-table tr:nth-child(even){
  background-color: #f2f2f2;
}

.r8s-table tr:hover{
  cursor: pointer;
  background-color: #f2f2f2;
}

.r8s-table-selectable{
  width: 100%;
  box-sizing: border-box;
  border: 0px;
}

.r8s-table-selectable tr th{
  padding: 10px;
  color: #ffffff;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 16px;
  background-color: #4CAF50;
  text-align: left;
}

.r8s-table-selectable tr td{
  padding: 10px;
  color: #4a4a4a;
  font-family: sans-serif, serif, Tahoma, Arial;
  font-size: 14px;
  background-color: #f2f2f2;
  border-bottom: solid 1px #777777;
  transition: background-color 0.3s;
}

.r8s-table-selectable tr:nth-child(even) td{
  background-color: #dedede;
  border-bottom: solid 1px #777777;
  transition: background-color 0.3s;
}

.r8s-table-selectable tr:hover td{
  cursor: pointer;
  background-color: #ffffff;
}

.r8s-data-row-selectable{
  border-bottom: solid 1px #aaaaaa;
}

.r8s-data-row-selectable:hover{
  cursor: pointer;
  background-color: #aaaaaa;
}

.r8s-data-row-selectable-select{
  background-color: #f1f1f1;
}

.r8s-colorpicker{
  display: flex; flex-direction: column;
}

.r8s-colorpicker:hover{
  cursor: pointer;
}

.r8s-colorpicker div.row{
  display: flex; flex-direction: row;
}

.r8s-colorpicker div.row div.color{
  width: 25px;
  height: 25px;
}

.r8s-display-action-over{
  display: none;
}

.r8s-hover-action:hover .r8s-display-action-over{
  display: inline-block;
  cursor: pointer;
}

.r8sanimation-scale{
  display: inline-block;
  transition: all ease 0.3s;
  transform: scale(1);
}

.r8sanimation-scale:hover{
  transform: scale(1.2);
  cursor: pointer;
}

.r8sanimation-rotate180{
  transition: all ease 0.3s;
}

.r8sanimation-rotate180:hover{
  cursor: pointer;
  transform: rotate(180deg);
}

.r8sanimation-reveal-left{
  display: inline-block;
  position: relative;
  transition: all ease 0.3s;
  overflow: hidden;
}

.r8sanimation-reveal-left div.top{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  transition: all ease 0.3s;
}

.r8sanimation-reveal-left:hover div.top{
  left: -100%;
  cursor: pointer;
}

.r8sanimation-reveal-left div.bottom{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.r8sanimation-reveal-left:hover div.bottom{
  cursor: pointer;
}

.r8sanimation-reveal-right{
  display: inline-block;
  position: relative;
  transition: all ease 0.3s;
  overflow: hidden;
}

.r8sanimation-reveal-right div.top{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  transition: all ease 0.3s;
}

.r8sanimation-reveal-right:hover div.top{
  left: 100%;
  cursor: pointer;
}

.r8sanimation-reveal-right div.bottom{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.r8sanimation-reveal-right:hover div.bottom{
  cursor: pointer;
}

.r8s-required{
  color: #e00023;
}

.r8s-required-border{
  border: solid 1px #e00023;
}

.r8s-required-bkgd{
  background-color: #f9d3d3;
}

.r8s-multiview{
  display: inline-block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.r8s-multiview > div.view{
  display: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}

.r8s-multiview >div.view.visible{
  display: inline-block;
}