@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
}

body {
    background: url('../img/dust_scratches.png');
    overflow-x: hidden;
}

.wrapper{
  display: flex;
  position: relative;
}
* {
    padding: 0;
    margin: 0;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 18px;
    background-color: #CCC;
}

.float {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 30px;
    left: 30px;
    background-color: #6f42c1;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

.my-float {
    margin-top: 17px;
}

.wrapper .sidebar {
    width: 230px;
    height: 100%;
    background: #17a2b8 !important;
    padding: 30px 0px;
    position: fixed;
    overflow: auto;
    right: 0;
}


.wrapper .sidebar h2{
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  padding-right: 20px;

}

.wrapper .sidebar ul li{
  padding: 15px;
  border-bottom: 1px solid #bdb8d7;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-top: 1px solid rgba(255,255,255,0.05);
}

    .wrapper .sidebar ul li a {
        color: #fff;
        display: block;
        font-weight: bold;
        font-size:20px;
    }

.wrapper .sidebar ul li a .fas{
  width: 25px;
}

.wrapper .sidebar ul li:hover{
  background-color: #594f8d;
}
    
.wrapper .sidebar ul li:hover a{
  color: #fff;
}
 
.wrapper .sidebar .social_media{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.wrapper .sidebar .social_media a{
  display: block;
  width: 40px;
  background: #594f8d;
  height: 40px;
  line-height: 45px;
  text-align: center;
  margin: 0 5px;
  color: #bdb8d7;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.wrapper .main_content {
    width: 100%;
    margin-left: -112px;
    margin-top: 50px;
}

.wrapper .main_content .header{
  padding: 20px;
  background: #fff;
  color: #717171;
  border-bottom: 1px solid #e0e4e8;
}

.wrapper .main_content .info{
  margin: 20px;
  color: #717171;
  line-height: 25px;
}

.wrapper .main_content .info div{
  margin-bottom: 20px;
}

.table-responsive-full {
}

@media screen and (max-width: 990px ) {
    

    .wrapper .main_content {
        width: 100%;
        margin-left: 0px;
        margin-top: 100px;
    }

    .hamburger {
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 5%;
        transform: translate(-5%,-50%);
        z-index: 9999;
    }

    .wrapper .line{
        width:30px;
        height:3px;
        margin:5px;
        background: #6f42c1;
    }

    .wrapper .sidebar ul li{
        text-align:center !important;
    }
    .wrapper .sidebar ul {
        text-align: center !important;
    }
        .wrapper .sidebar ul li a {
            text-align: center !important;
        }

    .wrapper .sidebar {
        position: absolute;
        height: 100%;
        min-height: 100vh;
        width: 100%;
        text-align: center !important;
        z-index: 9998;
        clip-path: circle(100px at 90% -25%);
        -webkit-clip-path: circle(100px at 90% -25%);
        transition: all 0.01s ease-out;
    }

    .wrapper .sidebar.open {
            clip-path: circle(2000px at 90% -10%);
            -webkit-clip-path: circle(2000px at 90% -10%);
        }
}

@media screen and (min-width: 990px ) and (max-width: 1390px )
{
    .wrapper .sidebar{
        width:200px;
    }

    .wrapper .main_content {
        max-width: 800px;
        margin-left: -40px;
    }
    .table-responsive-full {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 425.1px) {
    .table-responsive-xs {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

        .table-responsive-xs > .table-bordered {
            border: 0;
        }
}


@media (max-width: 767px) {

    .right-title {
        text-align: right;
    }
 }