/*
    URPGC.xyz STYLE
*/

@import "https://fonts.googleapis.com/css?family=Rubik:300,700";
body {
    margin: 0;
    font-family: Rubik;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #ffffff;
}

.h1, h1 {
    font-size: 3rem;
    letter-spacing: -2px;
    font-weight:600;
}
.h2, h2 {
    font-size: 3rem;
    letter-spacing: -2px;
    font-weight:300;
}
.h3, h3 {
    font-size: 2rem;
}
.h4, h4 {
    font-size: 1.7rem;
    font-weight:600;
}
.h5, h5 {
    font-size: 1.2rem;
}
.h6, h6 {
    font-weight:300;
}
b {
    font-weight:500;
    line-height: 1em;
    color: rgb(144, 154, 170);
}
p {
    font-size: 0.8em;
    font-weight: 300;
    line-height: 1em;
}


/** AGENCEMENT CONTENU ET NAVIGATION RIGHT**/
.header {
    width: 100%;
    background-color: rgb(22, 22, 22);
}

.menudroit {
    background-color: #212121;
    height: 100%;
    float: right;
    width: calc(100% - 810px);
  padding:15px;
}
.contenu {
    background: #fff;
  color:black;
    width: 810px;
    height: auto;
  padding:10px;
}


@media (max-width: 1000px) {
    .menudroit {
        float: none;
        width: 100%;
    }
    .contenu {
        width:100%;
    }
}

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
.quote{
    position: relative;
    font-size: 1.1rem;
  }
  
  .quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 50px;
  }


/*
    Icons STYLE
*/
.gc1 {
    font-size: 64px;
    background: -webkit-linear-gradient(#00ccf4, #0f58c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .gc2 {
    font-size: 48px;
    color:#999;
  }
  .gc3 {
    font-size: 24px;
    color:#333;
  }
  .gc4 {
    font-size: 20px;
    background: -webkit-linear-gradient(#00ccf4, #0f58c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .gcxxl {
    font-size: 200px;
    background: -webkit-linear-gradient(#00ccf4, #0f58c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .icon{
    padding:10px;
  }
a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
/*
    NAVBAR STYLE
*/
.nav-link {
    display: block;
    padding: .5rem 1rem;
        padding-right: 1rem;
        padding-left: 1rem;
        color:#eee;
}
.nav-link:hover {
    background-color: #76A1E0;
}
.navbar {
    padding: 5px 5px;
    background: #191919;
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: 10px;
    color: #999999;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 55px;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #383838;
    color: #cdcdcd;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 5px;
    background: #383838;
}

#sidebar ul.components {
    padding: 5px 0;
    border-bottom: 1px solid #666;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 4px;
    font-size: 0.8em;
    display: block;
}

#sidebar ul li a:hover {
    color: #474747;
    background: #ccc;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #76A1E0;
    background: #2b2b2f;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.8em !important;
    padding-left: 20px !important;
    background: #404040;
}

ul.CTAs {
    padding: 30px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #be73d5;
}

a.article,
a.article:hover {
    background: #8c96c2 !important;
    color: #fff !important;
}

/*/////////    boutons rotatifs   /////////////*/
.panel-heading {
    position: relative;
  }
  .panel-heading[data-toggle="collapse"]:after {
    font-family: 'gamecreator' !important;
    content: ">"; /* "play" icon */
    position: absolute;
    color: #b0c5d8;
    font-size: 18px;
    line-height: 12px;
    left: 10px;
    top: calc(50% - 10px);
  
    /* rotate "play" icon from > (right arrow) to down arrow */
    -webkit-transform: rotate(90deg);
    -moz-transform:    rotate(90deg);
    -ms-transform:     rotate(90deg);
    -o-transform:      rotate(90deg);
    transform:         rotate(90deg);
  }
  .panel-heading[data-toggle="collapse"].collapsed:after {
    /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
    -webkit-transform: rotate(0deg);
    -moz-transform:    rotate(0deg);
    -ms-transform:     rotate(0deg);
    -o-transform:      rotate(0deg);
    transform:         rotate(0deg);
  }
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 0px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 55px;
    right: 0;
}

#content.active {
    width: 100%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
}