


/* Fonts */

html {
    height: 100%;
}

@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 'bold';
    font-style: normal;
    font-display: swap;
}

strong {
    font-weight: bold;
}

::-webkit-scrollbar {
  width: 8px;
  /* This is more usable for users trying to click it. */
  background-color: rgba(0,0,0,0.20);
  -webkit-border-radius: 100px;
}
/* hover effect for both scrollbar area, and scrollbar 'thumb' */
::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.09);
}
/* The scrollbar 'thumb' ...that marque oval shape in a scrollbar */
::-webkit-scrollbar-thumb:vertical {
  background: rgba(0,0,0,0.5);
  -webkit-border-radius: 100px;
}
::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(0,0,0,0.61); /* Some darker color when you click it */
  -webkit-border-radius: 100px;
}



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
input::placeholder, textarea::placeholder{
    color: #bbb;
    font-weight: 100;
}

@keyframes showMessage {
  0%   { bottom: -100px; }
  100% { bottom: 0; }
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    background-color: #fafafa;
    background: linear-gradient(0, #FAFAFA 0%, #ffffff 100%) #fafafa;
    background-repeat: no-repeat;
    background-repeat: none;
    overflow: auto;
    overflow-y: auto;
    color: black;
    font-family: "Roboto";
    font-size: 14px;
    line-height: 1.42857;
    /* transition: 1s; */
    /*background-image: url(/design/images/background.png);*/
}
body.invert main {
    transform: scaleY(-1);
}

.defaultContainer {
    padding: 0px 40px 20px 40px;
}

.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

#DrawerProfileJp2[aria-hidden="true"] {
    display: none;
}

.april {
  display: none;
  transition: 200ms;
  cursor: pointer;
  position: absolute;
  left: -80px;
  top: 10px;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  overflow: hidden;
}
div.superAdmin .april {
  left: 10px;
  top: 70px;
}
.april > img {
  width: 100%;
}
#mainMenu:hover .april {
    transform: scale(1.3);
}
#mainMenu .april:hover img {
    transform: scaleY(-1);
}
body.invert img.april {
    transform: scaleY(-1);
}
br {
    flex : 0 1 100%;
}
p {
    margin: 0 0 10px;
    white-space: pre-line;
    line-height: 1em;
    text-align: left;
    font-weight: 400;
}
form > h2 {
    text-align: left;
    margin-bottom: 40px;
    color: #9c9c9c;
    font-family: 'Poppins';
    font-size: 1.25rem;
    font-weight: 500;
}
ol {
    list-style : decimal;
    margin-left : 30px;
}
.clickable {
    cursor: pointer;
}

div[data-groupname="company"] .error404 {
    background: #2eba9d;
}
p > label{
    width: 200px;
    text-align: left;
}
.underline {
    text-decoration: underline;
}
.align-center {
    margin: 0 auto;
    position: relative;
    display: block;
}
.fa {
    margin-right: 5px;
}

p#tips {
    margin: 30px auto 30px;
    font-weight : bold;
    text-align: center;
}
p.info:before {
    content: "?";
    float: left;
    height: 100%;
    display: block;
    padding: 5px;
    font-size: 2em;
}
p.info {
    border: 2px solid rgba(241, 103, 110, 0.49);
    width: 500px;
    padding: 7px;
    border-radius: 5px;
    margin: 10px auto;
}
.button {
    background: #ff4a6d;
    color: #fff;
    border-radius: 15px;
    display: inline-block;
    width: auto;
    margin: 10px auto;
    clear: both;
    outline: none;
    margin: 10px auto;
    padding: 5px 25px 5px 25px;

}
.button:hover {
    color: #fff;
}
div#app {
}

div#app div#container[data-isFullScreen='true'] {
    margin-left: 60px;
}
div#app div#container[data-isFullScreen='true'] ul#mainMenu {
    width: 60px;
}
div#app div#container[data-isFullScreen='true'] main{
    max-width: 100%;
}

canvas {
    background: #000;
    display: block;
    margin: 0 auto;
}

/* Field Wrap */

.fieldsWrap {
    display: flex;
}

.fieldsWrap > div {
    flex: 1;
}

.fieldsWrap > div:not(:last-child) {
    margin-right: 16px;
}

/* End Field Wrap */

/* PUBLICATE */ 

div.publicate {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

div.publicate > main {
    height: calc(100% - 55px);
    overflow-x: hidden;
}

@media screen and (max-width: 576px) {
    div.publicate > main {
        height: auto;
        min-height: calc(100% - 55px) !important;
    }
}

/* END PUBLICATE */

/*  WAVES */
div.new_password,
div.faq-companies {
    /* background: url(./images/top-wave-sign-in.svg) no-repeat; */
    background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1996.984px" height="474px" viewBox="0 0 1996.984 474" enable-background="new 0 0 1996.984 474" xml:space="preserve"><path fill="#ff4a6d" d="M-5,474c0,0,619.702-32.232,969.294-117.35c351.321-85.538,1038.69-51.822,1038.69-51.822V0H-5V474z"/></svg>') no-repeat;
    background-attachment: fixed;
    margin-left: 0px !important;
    background-repeat: no-repeat;

}

#app > div[class*="student"][class*="dashboard-student"],
#app > div[class*="student"][class*="missions"] {
    height: calc(100vh - 55px);
}

#app > div[class*="student"][class*="missions"] {
    height: fit-content;
}

/* END WAVES */


div[data-groupname=public] > main,
div.sign-in > main,
div.sign-up > main,
div.career > main,
div.lgas > main,
div.sign-up-student > main,
div.sign-up-workers > main,
div.sign-up-company > main,
div.sign-up-application > main,
div.sign-up-recruiting > main,
div.notfound > main,
div.account-created > main,
div.recover_password > main,
div.sign-up-worker > main {
    height: 100% !important;
    margin: 0px !important;
}

div.program > main,
div.programs > main {
    margin-top: 93px !important;
}

div.program[data-groupname=public] > main,
div.programs[data-groupname=public] > main {
    padding-top: 93px;
    margin: 0px !important;
}

@media (max-height: 600px) {
    div.sign-in > main,
    div.sign-up-student > main,
    div.sign-up-workers > main,
    div.sign-up-company > main,
    div.sign-up-application > main,
    div.sign-up-recruiting > main,
    div.sign-up-worker > main {
        height: auto;
    }
}

div.sign-up-student,
div.sign-up-workers,
div.sign-up-recruiting,
div.sign-up-company,
div.sign-up-application,
div.sign-up-worker,
div.sign-in,
div.account-created,
div.sign-up,
div.new_password,
div.recover_password {
    background-color:white;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

main {
    margin-right: 400px;
    padding: 0;
    position: relative;
    text-align: left;
    /* transition: all 400ms ease 0s; */
    margin-right: 0;
}
main > div {
    /*width: 800px;*/
    margin: 0 auto;
}
#container header{
    position: fixed;
    background: #372162;
    z-index: 99;
    width : 100%;
    top: 0;
    text-align: center;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container header h1 {
    margin: 0;
    border: 0;
    padding: 5px;
    display: inline-block;
    width: initial;
}
#container > header h1 img {
    width: 200px;
}

header ul.actionsMenu {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    font-size: 1.6em;
    color: #fff;
    top: 10px;
}
header ul.actionsMenu li {
    margin : 0;
}
header ul.actionsMenu li a {
    color : inherit;
}
header ul.actionsMenu li a span {
    font-size: 0.7em;
}
#container main {
  padding-right: 0;
  margin: auto;
  margin-top: 93px;
  height: calc(100vh - 93px);
  overflow: auto;
  overflow-x: hidden;
}

div[data-visiblemenu=false]#container main {
    margin: auto;
}
#container[data-open="true"] .frame{
    left : 290px;
}
.frame {
  background: #fff;
  border-radius: 5px;
  left: 100px;
  padding: 15px;
  right: 100px;
  top: 20px;
  transition : 400ms;
}
button[disabled] {
  opacity: 0.6;
  text-decoration: line-through;
}

*[data-frame=true] {
    display : block !important;
}

button {
  background: #ff4a6d none repeat scroll 0 0;
  border: medium none;
  border-radius: 3px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  font-weight: 500;
  outline: 0;
}
button.accept {
    background: #30ba99;
}

.signUpChoice a.button {
    display: block;
    background: #0ED2E1;
    width: 260px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 50px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-align: center;
}
.signUpChoice a.button.student {
    background: #ff4a6d;
}
a i, button i {
    margin-left: 10px;
}

.errors {


    text-align: left;
    position: relative;
}
.errors > p {
    display: inline-block;
    background: #ff4a6d;
    padding: 5px;
    margin-right: 5px;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

table {
  width: 100%;
}
td, th {
  /*border: 1px solid rgba(100, 100, 100, 0.3);*/
  padding: 5px;
  vertical-align: middle;
}
td > input {
    width: 100%;
    padding: 0;
    text-align: center;
    border: none;

}
td > input:focus {
    box-shadow: 0 2px 0 #AAA;
}
/* ul#mainMenu {
    background-color: red;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    transition: 400ms;
    z-index: 20;
    display: flex;
    bottom: initial;
    height: 55px;
    align-items: center;
    padding: 0px 30px 0px 30px;
} */
/* Ajout tout pourrit pour le menu tout pourrit en sign-up-application */
.sign-up-application ul#mainMenu {
  justify-content: space-between;
  color: #fff;
}
.sign-up-application ul#mainMenu li {
  font-size: 16px;
}
.sign-up-application ul#mainMenu li:nth-of-type(2) {
  display: none;
}
/* Ajout tout pourrit pour le menu tout pourrit en sign-up-application */
.sign-up-recruiting ul#mainMenu {
  justify-content: space-between;
  color: #fff;
}
.sign-up-recruiting ul#mainMenu li {
  font-size: 16px;
}
.sign-up-recruiting ul#mainMenu li:nth-of-type(2) {
  display: none;
}
/* Fin de l'ajout tout pourrit pour le menu tout pourrit en sign-up-application */

#container[data-isfullscreen='true'] #mainMenu li>a>span {
    display: none;
}


.validate main {
    margin-top: 0 !important;  
}
.box #menu {
    display: none;
}

.box main {
    margin-top: 0px !important;
    min-height: 100vh;
}


div[data-component="missionCategories"] > div {
    flex-basis: 29%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.alert {
	background: #ff4a6d;
	color: #fff;
	margin-top: 20px;
}

button.delete, button.close {
	position: absolute;
	top: 5px;
	right: 5px;
    opacity: 0;
    transition : 200ms;
}
button.close {
	opacity : 1;
}
*:hover > button.delete{
    opacity : 1;
}

#container[data-open=true] .message{
    left : 400px;
}

.input.checkBox input[type=checkbox] {
    position: absolute;
    margin: 0;
    padding: 0;
    opacity: 1;
    width: 20px;
    height: 20px;
    top: 7px;
    left: 32px;
    display: none;
}

.input.checkBox label {
    text-align: left;
    cursor : pointer;
}
.dialog section {
    padding: 30px 0px;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    margin: 0px;
}
.dialog section:last-of-type {
    border-bottom: 0;
}
section {
    background: #FFF;
    box-shadow:5px 5px 10px #0000000d, -5px -5px 10px #53434300;
    margin-bottom: 30px;
    padding: 27px;
    border-radius: 16px;
}
section form {
    background: none;
    padding: 0;
    box-shadow: none;
}
section > h1 {
    font-size: 1.4em;
    margin: 0 auto 40px;
}

form .input.checkbox >div >i {
    left: 20px;
    border: 0;
    font-size: 25px;
    top: -1px;
}
textarea {
    min-height: 100px;
}
.input.textarea textarea {
    margin-top: 30px;
    resize: none;
    height: 100px;
    padding-left: 5px;
}
.input.array > .infos {
    display: none;
}
.input.array .fields h2 {
    font-family: 'Francois One', sans-serif;
    text-align: left;
}

.user {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid;
    text-align: left;
    padding: 10px 5px;
    border-width: 1px 0 0;
    width: 100%;
    background: #fff;
    color: #555;
    border: none;
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
    flex: 1;
    flex-basis: 40%;
    border: 1px solid #e3e3e3;
}
.applications {
    margin-bottom: 30px;
}
div[data-groupname=superAdmin] .user {
    border-left: 9px solid;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 7px rgba(0,0,0,.1)
}
div[data-groupname=superAdmin] .user.student {
    border-color : #ff4a6d;
    border-top-color: #e3e3e3;
    border-bottom-color: #e3e3e3;
    border-right-color: #e3e3e3;
}
div[data-groupname=superAdmin] .user.company {
    border-color : #30ba99;
    border-top-color: #e3e3e3;
    border-bottom-color: #e3e3e3;
    border-right-color: #e3e3e3;
}
.user .actions > button {
    display: block;
    width: 150px;
    margin-bottom: 5px;
}

.user .avatar {
    overflow : hidden;
}
.user .avatar a {
    display: block;
    z-index: 1;
    position: relative;
    width: 100%;
    margin: auto;
}
.user .avatar img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
    margin: auto;
}
.user .tags span {
    background: #ff4a6d;
    font-size: 0.9em;
    margin: 0;
    margin-right: 4px;
    padding: 3px;
}

.personnalSkills span {
    color: #372162 !important;
}

.user.validated{
    font-size: 0.9em;
}

.user.validated .actions {
    width: 100%;
    font-size: 0.9em;
}
.user.validated .actions button {
    padding: 10px;
}
.confirmDuration p {
    text-align: center;
}
.user > div:first-of-type {
    max-height: 110px;
    border-radius: 100%;
    padding: 0;
}
.user > div:nth-of-type(2) {
    width: 100%;
    box-sizing: border-box;
}
.user .price {
    background: #30ba99;
    display: inline-block;
    padding: 4px;
    color: #fff;
    border-radius: 5px;
}

.user .priceDetails div > label {
    width: 165px;
    font-family: inherit;
    font-size: 1em;
    line-height: initial;
    margin: 0;
}
.user .tags {
    margin-top: 10px;
}
.user .priceExplanation {
    font-size : 0.8em;
}

.user h3, .user h4 {
    font-size: 1.2em;
    margin: 0;
    margin-bottom: 10px;
}
.user h3 {
    font-size: 1.4em;
    margin-bottom: 5px;
    font-family: source sans pro;
    font-weight: bold;
    text-align: center;
}
.user p {
    text-align: center;
}

.user h4.slogan {
    margin: 10px 0;
    font-size: 1em;
    font-family: Source sans pro;
    height: auto;
    line-height: inherit;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

div.input.checkbox label {
    left: 7px;
}
form div[data-haserrors=true] .input.checkbox label {
    left: 7px !important;
}

.dialogContent {
    font-size: 1em !important;
    font-family: "Source Sans Pro" !important;
    padding: 24px 24px 24px !important;
}
.dialogTitle {
    background-color: #372162;
    color: white !important;
}

.little {
    margin : 0 auto;
    padding-top: 120px;
    max-width: 400px;
}

.signUpChoice {
    padding-top: 10%;
}
.middle {
    width: 65%;
    margin: 0 auto;
    margin: 0 auto;
}
.big {
  margin: 0 auto;
  width: 75%;
}
.stable {
    /*width: 800px;*/
    margin: 0 auto;
}
div.middle form.middle {
    width: 90%;
}
.addAddresses {
  position: absolute;
  top: 0;
  z-index: 1;
}
div[data-visibleMenu=false] div#menu {
    display: none;
}
.menuTrigger {
  	cursor: pointer;
  	/* position: fixed;
  	left: 10px;
  	top: 10px; */
  	transition: 400ms;
  	background: none;
    z-index: 40;
    display : none;
}
.menuTrigger:focus {
    outline : 0;
}

.menuTrigger .bar {
    width: 30px;
    background: #8c5fe1;
    height: 2px;
    margin-bottom: 8px;
    border-radius: 3px;
    transition: 400ms;
    margin-top: 5px;
}
#container .menuTrigger .bar:first-of-type {
	transform-origin: 0 2px;
}
#container .menuTrigger .bar:last-of-type {
	transform-origin: 0 2px;
    margin-bottom : 0;
}
#container[data-open="true"] .menuTrigger .bar:first-of-type {
	transform: rotate(42deg);
}
#container[data-open="true"] .menuTrigger .bar:nth-of-type(2) {
	opacity: 0;
}
#container[data-open="true"] .menuTrigger .bar:last-of-type {
	transform: rotate(-42deg);
}

h1 {
    margin: 40px auto;
    text-align: left;
    width: 100%;
}
h2 {
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-family: Poppins;
    color: #372162;
}

div[class*=dashboard-student] main > div > h1 {
    align-items: center;
    height: 55px;
    z-index: 200;
    width: 100%;
    max-width: 90%;
    margin: auto;
    padding-left: 0;
}

main > div > h1 {
    color: #797979;
    border: none;
    font-size: 1.25rem;
    box-sizing: border-box;
    padding: 30px;
    margin: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-weight: 500;
}

/*div[data-groupname=company] main > div > h1 {
    background: #30ba99;
}*/
div[data-groupname=superAdmin] .actions > *, .adminAction > * {
    position: initial !important;
    display: block !important;
}
/*main > div > *:not(h1) {
    padding: 30px;
}*/
div.input {
	position: relative;
    margin-top: 30px;
}
form .fields > div {
    position: relative;
    text-align: left;
    background: #fff;
    padding: 5px;
    border-radius: 3px;
}
form .fields > div div.delete {
    position: absolute;
    right: 0;
    top: -41px;
    z-index : 1;
}
.fields .delete button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #000;
}
.actions {
    display: flex;
    justify-content: center;
}
.actions > *, .adminAction > * {
  margin: 0 auto;
  display: block !important;
  text-align: center;
  display: flex
}

img.aside {
    position: fixed;
    right: 213px;
    bottom: 0;
    width: 380px;
}
form div[data-hasErrors="true"] label {
    color : #ff4a6d;
}
form div[data-hasErrors="true"] input {
    border-color: #ff4a6d;
}
div.input input, div.input select {
    padding-left: 5px;
}
div.input.noIcon input, div.input.noIcon select, div.input.noIcon textarea {
    padding-left: 10px;
}
div.input.tags .values {
    text-align: left;
}
.tags span {
    display: inline-block;
    color: #0ED2E1;
    border-radius: 3px;
    cursor: pointer;
    margin: .5em .5em 0 0;
    padding: .4em .833em;
    min-width: 3em;
    text-align: center;
    font-size: .85714286rem;
    font-weight: bold;
}
div.input.tags span i {
    position: relative;
    border: 0;
    top: 0;
    padding: 0;
    width: auto;
}
div.infos {
    position: absolute;
    top: 0px;
    width: 100%;
}

div.input label {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 14px;
    color: #A8A8A8;
    font-size: 12px;
    font-weight: 300;
}
div.input * {
    transition : 200ms;
}
form > .div {
    margin-bottom: 0;
}
.noInfos label {
    display: none;
}
.noInfos div.infos {
    top: -15px;
}
div.noInfos.input input, div.noInfos.input textarea {
    padding-left: 10px;
}

.cols3 {
    text-align: left;
}
.cols3 > * {
    display: inline-block;
    vertical-align: top;
    width: 32.666%;
    margin-right: 1%;
}
.cols3 > *:nth-child(3n) {
    margin-right: 0;
}
.cols2 > * {
    display: inline-block;
    vertical-align: middle;
    width: 49.5%;
    margin-right: 1%;
}
.cols2 > *:nth-child(even) {
    margin-right: 0;
}


div.select.input label+div {
    margin: 0;
    padding: 0;
}
.ibanFields {
    margin: 0;
    padding: 0;
}
div.input .ibanFields input {
    padding-left: 5px;
    text-align: right;
}

.clickable {
    cursor: pointer;
}
.clickable:hover {
    text-decoration: underline;
}

form .fields > div:not(:last-of-type) {
    margin-bottom: 1em;
}
.fieldtime-disabled {
    background-color: #c2c2c2 !important;
    text-align: center !important;
    cursor: not-allowed !important
}
.fieldtime-item {
    text-align: center !important;
}
.fieldtime-selected {
    background-color: rgb(48, 186, 153)!important;
    color: white !important;
    text-align: center !important;
}
div.input input:focus + div > label {
    color : #30ba99;
    /* padding-left : 20px; */
}
div.input .infos i {
    position: absolute;
    left: 0;
    top: 33px;
    padding: 8px;
    border-right: 1px solid #9f9f9f;
    width: 41px;
    opacity: 0.4;
    transition: 400ms;
}
div.input .infos  i.state {
    right: -10px;
    position: absolute;
    display: block;
    left: auto;
    color: #07b307;
    border: none;
    opacity: 0.6;
    top: 42px;
    padding: 0;
}
div.input.noInfos i.state {
    top: 27px;
}
div.input i.state.fa-spin {
    right: 40px;
    width: auto;
}
div.input i.state.wrong {
    color: #d20000;
}
div.input input:focus + div > i {
    opacity : 1;
}
div.input label > i {
    position: relative;
    top: 0;
    left: 0;
    display: inline;
    border : none;
}
form .input.checkbox > div:first-of-type {
    left: -31px;
    position: absolute;
    top: -32px;
}

.content > section {
    box-shadow: none;
}

.tabs h3 i {
    float: left;
}

.loading {
    bottom: 0;
    position: fixed;
    right: 0;
}

.mission > div {
    display: flex;
    width: 100%;
    vertical-align: top;
    text-align: left;
    margin-bottom: 40px;
    flex-wrap: wrap;
    word-break: break-word;
    flex-direction: column;
}
.mission > .details > div {
    display: inline-block;
    width: 50%;
    text-align: left;
}
.company .mission .creneau {
    width: 100%;
}

.mission .creneaux {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.details {
    margin-bottom: 20px;
    background-color: white;
    -webkit-box-shadow: 0 2px 7px rgba(0,0,0,.1);
    padding: 30px;
}

.details > h1 {
    margin: 0 !important;
    font-weight: 700;
    font-size: x-large;
    margin-bottom: 20px;
    position: relative;
}

.company > .description {
    margin-right : -210px;
    padding-right: 220px;
    width : 100%;
}
.company > .logo {
    width: 210px;
}
.company > .logo img {
    max-width: 100%;
}

.number {
    color: white;
    background-color: #ff4a6d;
    width: 25px;
    height: 25px;
    display: flex;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
    color: white !important;
    align-items: center;
    justify-content: center;
}
.profile-student main > div > .alert {
    width: 50%;
    margin: 0 auto;
}
.profile-student main > div > .alert p{
    text-align : center;
}
.formations > h2, .experiences > h2 {
    margin-bottom: 1.2em;
    font-weight: bold;
    font-family: Poppins;
}
.formations > h2 > button, .experiences > h2 > button {
    width: 100%;
}

button.validated, input.validated {
    background: #0ED2E1;
    padding: 10px 40px;
    border-radius: 20px;
    font-size: 14px;
}

.Mission h2 {
    margin-top: 2em;
}

.Mission h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Poppins;
}

.Mission .informations {
    background : #fff;
    border : none;
    margin-bottom: 20px;
    background-color: white;
    -webkit-box-shadow: 0 2px 7px rgba(0,0,0,.1);
    padding: 30px;
}
.Mission .changeDuration > * {
    display: inline-block;
    width: 12%;
    vertical-align: middle;
    padding-left: 0;
    padding-right: 0;
    text-align : center;
}
.Mission .changeDuration {
    margin-bottom : 5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.Mission .changeDuration > *:nth-child(2) {
    width: 74%;
    margin-left : 1%;
    margin-right : 1%;
}
.Mission div.description {
    padding: 8px;
    background: #fff;
    white-space: pre-wrap;
    border-radius: 3px;
    padding-top: 0;
}

.Mission div.description > div {
    color: grey;
}

.Mission div.description > a {
    display: block;
    padding: 10px 0px;
    text-decoration: none;
}
.Mission .description h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-family: Poppins;
}

.Mission .description > div:nth-of-type(1) img {
    max-width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(48, 186, 153, 0.3);
    margin-bottom: 10px;
}

.Mission .description > div:nth-of-type(2) {
    width: 80%;
    padding-left : 10px;
}
p > i, li > i {
    margin-right: 5px;
}
.UserProfilePage .experience, .UserProfilePage .formation {
    border-left: 3px solid #30ba99;
    padding-left: 5px;
}
.mission h2, .company h2 {
    text-align: left;
    color: #372162;
    border: none;
    box-sizing: border-box;
    margin-bottom: 30px;
    display: block;
    font-family: 'Poppins';
    /* font-size: 1rem; */
    font-weight: 600;
}
.mission .details label {
    width: 200px;
    display: inline-block;
}
.mission .details p {
    display: inline-block;
}
.mission .details p > * {
    vertical-align: top;
}
.mission .details p > span {
    display: inline-block;
    width: 100%;
    margin-left: -200px;
    padding-left: 200px;
    margin-top: 20px;
    position: relative;
}
details span > i {
    position: absolute;
    left: 183px;
}

div.file:not(.input) {
    min-height: 100px;
    background: rgb(241, 241, 241);
    border-radius: 3px;
    border: 1px solid #ddd;
    padding: 10px;
}
.input.file {
    display: flex;
    justify-content: center;
}
.input.file > * {
    width: 100%;
    display: block;
    max-width: 100%;
}
.input.file label > * {
    display: block;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.input.file label > * i {
    top : 0;
    left : 0;
    border : none;
    position: relative;
}
.input.file input[type=file] {
    display : none;
}
.input.file label {
    background: #f9f9f9;
    width: initial;
    padding: 10px;
    color: #533;
    cursor: pointer;
    height: 150px;
    border-radius: 100%;
    width: 150px;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.input.file img {
    max-width: 100%;
}

.toolTip {
    font-size: 12px;
}

#app > div[class="missions"][data-groupname="student"] main {
    max-width: 90%;
    margin-top: 105px;
}

.companyInfos > img {
    max-height: 70px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    min-width: 70px;
    flex: 0.2;
}

.missions .thumbnail > h1 {
    min-height: 0;
    color: #717171;
    text-transform: capitalize;
    padding: 30px;
}
.joby.card .thumbnail .caption {
    border-top: 1px solid rgba(150, 150, 150, 0.25);
    text-align: left;
    padding-bottom: 60px;
}
.missions .thumbnail .btn-info {
    color: grey;
    border: 0;
    padding: 3px 18px;
    margin-top: 30px;
    position: absolute;
    bottom: 0px;
    padding: 20px !important;
    text-align: center;
    text-decoration: initial;
    width: 100%;
    left : 0;
}

.missions .actions > button {
    width: 32%;
    display: inline-block;
    margin-right: 1% !important;
}

ul#mainMenu > h1 {
    /* margin: 0px !important; */
    max-width: 65px;
}

/* ul#mainMenu > h1 > img {
    width: 40px;
} */

.superAdmin ul#mainMenu li a {
    font-weight: normal;
    /* height: 55px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.joby.card:nth-of-type(3n+1), .joby.card:nth-of-type(3n+1), .joby.card:nth-of-type(3n+2) {
    clear: left;
    margin-right: 0.8%;
}
.adminAction a {
    display: block;
    border-top: 1px solid #f1f1f1;
    text-align: left;
    text-decoration: none;
    color: #31708f;
    font-weight: bold;
    padding: 15px 10px;
}

.adminAction p {
    padding: 20px !important;
    color: #31708f;
    font-weight: bold;
}

.adminAction button {
    padding: 20px !important;
    color: #ffffff;
    font-weight: bold;
    border-radius: 0px !important;
}

.adminAction a:hover {
    background-color: white;
}

.adminAction a > i {
    padding-right: 5px;
}

.addresse {
    margin-top: 20px;
}

@media (max-width : 1240px) {
    #container[data-open="true"] main {
        margin-left: 0;
    }
}
@media (max-width: 1024px) {
    #addresses > div {
      margin-right: 2.3%;
      width: 31.8%;
    }
    #addresses > div:nth-child(3n) {
      margin-right: 0%;
    }
    #addresses > div:nth-child(5n) {
      margin-right: 2.3%;
    }
}

@media (max-width: 650px) {
    /* .mission .creneau {
        flex: 100% !important;
    } */
    .dialog .rows > div {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .april {
        left: 0;
        top: 70px;
        z-index: 2;
        position: fixed;
    }

    #app > div[class*="userslist"] main {
        width: 100%;
    }

    /* Menu CTA Company & CompanySaas */

    /* #menu.company ul#mainMenu > li:last-of-type,
    #menu.companySaas ul#mainMenu > li:last-of-type {
        display: initial;
    } */
    /* #menu.company ul#mainMenu > li:first-of-type,
    #menu.companySaas ul#mainMenu > li:first-of-type {
        display: flex;
        justify-content: center;
    }
    #menu.company ul#mainMenu > li:first-of-type> a > span,
    #menu.companySaas ul#mainMenu > li:first-of-type > a >span {
        background: #ea4f6b;
        color: #fff;
        border-radius: 5px;
        margin: 0 auto;
        text-align: center;
        padding: 5px 20px;
        font-family: Roboto;
    } */

    /* END Menu CTA Company & CompanySaas */

    div[data-component="missionCategories"] {
        margin-top: 0;
    }

    .dashboard-student > main > div > div {
        min-height: initial !important;
    }

    div[class*=dashboard-student] main > div > h1 {
        position: initial;
        height: auto;
        justify-content: center;
        width: 100%;
    }
    main > div > h1  {
        position: inherit;
        height: inherit;
        width: 100%;
    }
    .emoji-dialog {
        left: 0 !important;
    }
    .mission > .details > div {
        width: 100%;
        text-align: left;
    }
    .company > div {
        display: block;
    }
    div[data-open="false"] #mainMenu {
        left: -390px;
    }
    #mainMenu > * {
        transition: 200ms;
    }

    /* ul#mainMenu > h1 {
        display: none;
    } */

    body {
        /* padding-bottom : 40px; */
    }
    main {
        margin-left : 0;
    }
    div#app > div {
        margin-left: 0px;
    }
    .stable, main > div {
        width: 100%;
    }

    #container main {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-top: 93px;
        min-height: 0;
    }


    .profile {
        background-size: 70%;
    }

    .stable {
        width: auto;
    }
    .card {
        width: 49.2%;
    }
    #addresses > div {
      width: 100%;
    }
    #addresses > div:nth-child(2n) {
      margin-right: 0;
    }
    #addresses > div:nth-child(5n) {
      margin-right: 0;
    }
    .groupInputs > div {
        width: 100%;
    }
    .groupInputs > div:nth-child(1n) {
        padding-right: 0;
        padding-left: 0;
    }
    .missions > h1 {
        margin-top: 98px;
    }

    #container {
        margin-left: 0px;
     }

    div[data-groupname="company"] .missions > h1 {
       margin-top: 52px;
    }
    div.input .ibanFields input {
        width: 30%;
    }
    .cols4 > * {
        width: 100%;
    }
    .cols3 > * {
        width: 100%;
    }
    .cols2 > * {
        width: 100%;
    }
    div > label + div {
        width: 100%;
        display: flex;
        margin-left: 0;
        padding-left: 0;
        text-align: left;
        flex-wrap: wrap;
    }
    .joby.card:nth-of-type(2n+1), .joby.card:nth-of-type(2n+1), .joby.card:nth-of-type(2n+2) {
        clear: left;
        margin-right: 0.8%;
    }

    div#menu .menuTrigger {
        top: 0;
        display : inline-block;
    }
    #menu img.logo {
        right: auto;
        left : 10px;
        width: 50%;
    }
    /* ul#mainMenu {
        height: calc(100vh - 55px);
        max-width: 100% !important;
        flex-direction: column;
        top: 55px;
        background: inherit;
        padding: 0;
    } */

    ul#mainMenu li {
        width: 100%;
    }
    #mainMenu .profile {
        padding: 20px;
        background: none;
        display: none;
    }
    div[data-open="false"] #mainMenu {
        left: -200%;
    }
    /* new */

    .menuTrigger {
        position: absolute;
        top: 20px !important;
        left: 20px;
    }

    #container[data-open="false"] #mainMenu > li, #container[data-open="false"] #mainMenu > h1 {
        display: none;
    }

    #container[data-open="true"] #mainMenu {
        flex-direction: column;
        height: 100%;
        margin: 18px 20px;
        margin-top: 93px;
    }

    #container[data-open="true"] > svg {
        fill: white;
    }

    #container[data-open="false"] #mainMenu {
        margin: 18px 20px;
    }

    #container[data-open="true"] {
        background: linear-gradient(90deg, rgba(250,158,137,1) 0%, rgba(198,162,231,1) 100%);
    }

    #container[data-open="true"] #mainMenu > li {
        display: flex;
    }

    #container[data-open="true"] #mainMenu > li > a {
        color: white;
    }

    #container[data-open="true"] #mainMenu > h1 {
        display: none;
    }

    #container[data-open="true"] main {
        margin-top: 0;
    }

    #container[data-open="true"] #menu {
        bottom: 0px;
        left: 0px;
        top: 0px;
        background-color: #040404ba;
        backdrop-filter: blur(80px);
        width: calc(100% - 0px);
    }

    #container[data-open="true"] #mainMenu > div {
        position: absolute;
        right: 20px;
        top: 0;
        height: 93px;
        display: flex;
        align-items: center;
    }

    #container[data-open="true"] .menuTrigger .bar{
        background: white;
    }

    /* end new */

    #container[data-open=false] > ul#mainMenu {
        opacity : 0;
        pointer-events: none;
    }
    .middle, .big {
        margin: 0 auto;
        width: auto;
    }
    .user > div:nth-of-type(2) {
        width: 100%;
    }
    .user > div.actions {
        width: 100%;
        text-align: center;
    }
    .user .actions > button {
        display: inline-block;
        width: 100%;
        margin-bottom: 5px;
    }
    .input.file img {
        max-width: 100%;
        display: block;
    }
    .mission .details p {
        width: 100%;
        margin : 0;
        padding : 0;
    }
    .mission .details label {
        width: 100%;
    }
    .mission .details p span {
        width : 100%;
        margin : 0 0 10px;
        padding : 0;
    }
    .Mission .description > div:nth-of-type(2) {
        width: 70%;
        padding-left: 10px;
        padding-top: 6px;
    }
    .accordion .panel.active .content, .tabs .panel.active .content {
        height : auto;
        margin: 0;
    }
}
@media (max-width: 540px) {

    .defaultContainer {
        padding: 40px;
        padding-top: 0;
    }
    .errors {
        position: initial;
    }
    .card {
        width: 100%;
    }
    .TimeSlots form, .TimeSlots section {
        width : 100%;
    }
    .TimeSlots .values {
        width: 100%;
    }
}

    /* RatingComponent */


    .ratingBadge {
      position: absolute;
      top: 0;
      right: 0;
    }

    .dashboard-student > main > div > h1 {
        margin: 0;
    }

    .cgu a {
        color: #551a8b;
    }

    .recharts-tooltip-cursor {
        fill: rgba(0, 0, 0, 0.3);
    }

.hideOverflow {
    overflow: hidden;
}

/* Emoji Picker Css */

.emoji-dialog {
    width: 285px;
    height: 220px !important;
    background: #fff;
    box-sizing: border-box;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    position: absolute;
    left: 0;
    border: 1px solid #e6e6e6;
    border-left: 0px;
    top: -220px;
}

.emoji-dialog .emojione {
    margin: 0;
    width: 100%;
}

.emoji-dialog .emoji-dialog-header {
    padding: 0 10px;
    background-color: #F5F7F9 !important;
    position: initial !important;
    border: none;
    height: 42px !important;
}

.emoji-dialog .emoji-dialog-header ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.emoji-dialog .emoji-dialog-header li {
    display: inline-block;
    box-sizing: border-box;
    height: 42px;
    padding: 9px 5px;
}

.emoji-dialog .emoji-dialog-header li img,
.emoji-dialog .emoji-dialog-header li svg {
    width: 22px;
    height: 22px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.emoji-dialog .emoji-dialog-header li.active {
    background: #fff;
}

.emoji-dialog .emoji-dialog-header li.active img,
.emoji-dialog .emoji-dialog-header li.active svg {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.emoji-dialog .emoji-row {
    box-sizing: border-box;
    overflow-y: hidden;
    padding-left: 10px
}

.emoji-dialog .emoji-row .emoji {
    display: inline-block;
    margin: 5px;
    border-radius: 4px;
}

.emoji-dialog .emoji-category-header {
    box-sizing: border-box;
    overflow-y: hidden;
    padding: 8px 16px 0;
    display: table;
}

.emoji-dialog .emoji-category-header > * {
    display: table-cell;
    vertical-align: middle;
}

.emoji-dialog .emoji-category-title {
    font-size: 18px;
    font-family: sans-serif;
    font-weight: normal;
    color: #444;
}

.emoji-dialog .emoji-category-heading-decoration {
    text-align: right;
    display: none;
}

.emoji-dialog .modifiers {
    list-style: none;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    white-space: nowrap;
}

.emoji-dialog .modifiers li {
    display: inline-block;
    padding: 0 2px;
}

.emoji-dialog .modifiers li:last-of-type {
    padding-right: 0;
}

.emoji-dialog .modifiers .modifier {
    display: inline-block;
    border-radius: 10px;
    width: 15px;
    height: 15px;
    position: relative;
}

.emoji-dialog .modifiers .modifier.active::after {
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    border: 2px solid #fff;
    top: 2px;
    left: 2px;
}

.emoji-dialog .modifiers li:hover {
    -moz-transition-duration: 200ms;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;

    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

.emoji-dialog .emoji-search-wrapper {
    padding: 6px 16px;
}

.emoji-dialog .emoji-search {
    font-size: 12px;
    padding: 6px 4px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.emoji-dialog .emoji-categories-wrapper {
    position: absolute;
    top: 42px;
    bottom: 0;
    left: 0;
    right: 0;
}

.emoji-dialog .emoji-search-wrapper +
.emoji-categories-wrapper {
    top: 83px;
}

.emoji-dialog .emoji-row .emoji:hover {
    background: #F5F7F9;
}

.emoji-dialog .emoji {
    width: 22px;
    height: 22px;
}

blockquote.twitter-tweet {
  display: inline-block;
  font-family: "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  border-color: #eee #ddd #bbb;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin: 10px 5px;
  padding: 16px;
  background-color: white;
  max-width: 468px;
}

blockquote.twitter-tweet p {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

blockquote.twitter-tweet a {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
  outline: 0 none;
}

blockquote.twitter-tweet a:hover,
blockquote.twitter-tweet a:focus {
  text-decoration: underline;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.infos > .fa {
    padding-left: 15px;
    padding-top: 6px;
}


/* Zendesk Widget */

#launcher, #webWidget {
    left: 0px !important;
}

/* Mui Ovveride */

/* Paper overflow */

.MuiDialog-paper:-webkit-scrollbar {
    background-color: transparent;
    width: 4px;
}
/* .MuiDialog-paper::-webkit-scrollbar-thumb {
    background-color: transparent;
} */
.MuiDialog-paper:hover::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
    -webkit-border-radius: 100px;
}

.MuiDialog-paper:hover::-webkit-scrollbar:hover {
    background-color: transparent;
}

.MuiDialog-paper:hover::-webkit-scrollbar-thumb:vertical {
    background: #BFA2F5; 
    -webkit-border-radius: 100px;
    opacity: 0.5;
}

.MuiDialog-paper::-webkit-scrollbar:vertical:active {
    background: #8C5FE1;
    -webkit-border-radius: 100px;
}

/* End Paper overflow */

.MuiPaper-elevation1 {
    box-shadow:5px 5px 10px #0000000d, -5px -5px 10px #53434300 !important;
}

.MuiPaper-elevation2 {
    box-shadow:5px 5px 10px #0000000d, -5px -5px 10px #53434300 !important;
}

.MuiSnackbarContent-root {
    min-width: fit-content !important;
}

.MuiDialog-paperWidthXs {
    max-width: fit-content !important;
}

.MuiDialogContent-root {
    padding: 8px 74px 8px 74px !important;
    min-width: 500px !important;
}

.MuiDialogContent-root[data-padding="default"] {
    padding: 37px !important;
    width: 100%;
}

.MuiDialogContent-root[data-padding="none"] {
    padding: 0px !important;
}

.MuiPickersModal-dialog:first-child {
    padding: 0 !important;
    min-width: auto !important;
}

.MuiListSubheader-sticky {
    background-color: white !important;
}

.MuiPickersModal-dialogRoot { /* Picker really need to be on top  */
    z-index: 25000;
}

@media (max-width: 540px) {
    .MuiDialogContent-root {
        padding: 8px 24px !important;
        min-width: auto !important;
    }
}


/* QUILL EDITOR */

.ql-editor strong {
    font-weight: bold;
}

.quill {
    width: 100%;
}

.ql-container, .ql-toolbar {
    border: 0px !important;
}

.ql-toolbar {
    border-bottom: 1px solid #dadada !important;
}

.ql-editor {
    min-height: 120px;
}

.ql-snow .ql-tooltip {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 5px #ddd;
    color: #444;
    padding: 5px 12px;
    white-space: nowrap;
    box-shadow: none;
    border-radius: 4px;
}

.ql-snow .ql-tooltip[data-mode=link]::before {
    content: "Entrer le lien:";
}

.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
    content: "Enregistrer";
    color: #9158ff;
}

/* QUILL EDITOR END */



.loltesticon {
  display: none !important;
}

.lolselect {
  padding-right: 0 !important;
}

.CircularProgressbar-path {
    stroke: #8C5FE1;
}

.CircularProgressbar-trail {
    stroke: #FAFAFA;
}

.CircularProgressbar-text {
    fill: #474747;
}



/* RangeSlider JobyRary Style */


.input-range__slider {
    appearance: none;
    background: #8C5FE1;
    border: 1px solid #8C5FE1;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.65rem;
    outline: none;
    position: absolute;
    top: 50%;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    width: 1rem; }
    .input-range__slider:active {
      transform: scale(1.3); }
    .input-range__slider:focus {
      box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2); }
    .input-range--disabled .input-range__slider {
      background: #cccccc;
      border: 1px solid #cccccc;
      box-shadow: none;
      transform: none; }
  
  .input-range__slider-container {
    transition: left 0.3s ease-out; }
  
  .input-range__label {
    color: white;
    font-family: "Helvetica Neue", san-serif;
    font-size: 0.8rem;
    transform: translateZ(0);
    white-space: nowrap; }
  
  .input-range__label--min,
  .input-range__label--max {
    bottom: -1.4rem;
    position: absolute; }
  
  .input-range__label--min {
    left: 0; }
  
  .input-range__label--max {
    right: 0; }
  
  .input-range__label--value {
    position: absolute;
    top: -2.2rem; }

    .input-range__label--value > span {
        background-color: #8C5FE1;
        padding: 4px 8px;
        border-radius: 4px;
    }
  
  .input-range__label-container {
    left: -50%;
    position: relative; }
    .input-range__label--max .input-range__label-container {
      left: 50%; }
  
  .input-range__track {
    background: #dadada;
    border-radius: 0.3rem;
    cursor: pointer;
    display: block;
    height: 0.3rem;
    position: relative;
    transition: left 0.3s ease-out, width 0.3s ease-out; }
    .input-range--disabled .input-range__track {
      background: #dadada; }
  
  .input-range__track--background {
    box-shadow: inset 2px 1px 3px rgba(71, 71, 71, 0.3);
    left: 0;
    margin-top: -0.15rem;
    position: absolute;
    right: 0;
    top: 50%; }
  
  .input-range__track--active {
    background: #8C5FE1; }
  
  .input-range {
    height: 1rem;
    position: relative;
    width: 100%; }


/* RangeSlider JobyRary End style */