/* globalstyle.css
author: Gabriel Bourgeois
creation date: 07/07/2019
description: global css for the Covlab dashboard */

/* Overlay */
.ui-widget-overlay {
  opacity: 0.6;
  background-color: black;
}

/* Variables */
:root {
  --gray-pale: #bcbcbc;
  --green-pale: rgba(80,153,80);
  --orange-pale: rgba(255,180,25);
  --bg-white: rgba(255,255,255,0.25);
  --red-pale: rgba(255,100,100);

  --red-pale-50: rgba(255,100,100,0.5);
  --green-pale-50: rgba(80, 153, 80, 0.5);

  --disabled-dark: rgba(75,75,75);
}

/*/////////////////////////////////////////////////////////////////////////////
// Animations
/////////////////////////////////////////////////////////////////////////////*/

.option-new {
  display: none;
  transition: height 1s;
}

.nothing {
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(0,0,0,0);
}

.nothing i {
  font-size: 110%;
}

/*/////////////////////////////////////////////////////////////////////////////
// General
/////////////////////////////////////////////////////////////////////////////*/

html, body {
  margin: 0;
  padding: 0;
  /*background-image: linear-gradient(to bottom left, #30cfd0 0%, #330867 100%);
  background-image: linear-gradient(315deg, #000000 0%, #414141 74%);*/
  background-image: linear-gradient(315deg, rgba(10,10,10,0.5) 0%, rgba(30,30,30,0.6) 74%), url("/public/images/connectwork.png");
  background-attachment: fixed;
  font-family: Helvetica, sans-serif;
  width: 100%;
  height: 100%;
}

.bluelink {
  text-decoration: underline !important;
  color: rgb(75,75,255) !important;
}

.body-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  font-family: "Georgia";
  width: 100%;
  height: fit-content;
}

.body-flex {
  display: flex;
  justify-content: center;
}

.body-flex  > * {
  flex-grow: 1;
}

.body-flex.column {
    align-items: center;
}

.column {
  flex-direction: column;
  justify-content: flex-start;
}

.row {
  flex-direction: row;
}

.widget {
  display: flex;
  padding: 20px;
  margin: 5px;
  --bg-white: rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.25);
  background-color: var(--bg-white);
  flex-grow: 0;
  overflow: auto;
  overflow-x: auto;
  overflow-y: auto;
}

.lg-h {
  /*min-height: 625px;*/
  height: 87.5%;
}

.lg-w {
  /*min-width: 1250px;*/
  width: 1250px;
  /*max-width: 1250px;*/
  max-width: 67.5%;
  /*width: 67.5%;
  max-width: 67.5%;*/
}

.fit-lg-w {
  width: fit-content;
  max-width: 67.5%;
}

.md-h {
  max-height: 600px;
}

.md-w {
  /*width: 40%;
  max-width: 40%;*/
  width: 650px;
  /*max-width: 650px;*/
  max-width: 42.5%;
}

.almost-full-w {
  width: 90%
}

.almost-full-h {
  height: 90%;
}

.full-w {
  width: 100%;
}

.full-h {
  height: 100%;
}

.fill {
  flex-grow: 3;
}

.overflow-y {
	overflow-y: auto;
}

.inline-block {
  display: inline-block;
}

a, a:focus, a:hover {
	text-decoration: inherit;
	color: inherit;
}

/* a:visited {
  color: inherit;
}
 */
a:hover {
  cursor: pointer;
}

h1 {
  display: inline-block;
  font-size: 150%;
  width: 400px;
  max-width: 95%;
  border-bottom: 1.5px solid black;
  padding-bottom: 3px;
  /* text-shadow: 0 0 5px white; */
}

h2 {
  margin: 10px 0;
  padding: 0;
  font-size: 110%;
}

.back {
  background-color: rgba(255,255,255,0.25);
  background-color: var(--bg-white);
  border: 0.5px solid black;
  padding: 5px 25px;
  padding-bottom: 15px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.body-container.center {
  text-align: center;
}

.single-list {
  display: flex;
  flex-direction: column;
  padding-left: 35px;
  padding-right: 35px;
}

.single-list hr {
  width: 100%;
  border-color: black;
  background-color: black;
  border-width: 1px;
  border-style: solid;
}

.single-list .shrink {
  display: inline-flex;
}

/*/////////////////////////////////////////////////////////////////////////////
// Grid
/////////////////////////////////////////////////////////////////////////////*/

.crossroad {
  height: 540px;
  display: flex;
  font-size: 75%;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: auto;
  align-items: stretch;
}

.crossroad > .window {
  display: flex;
  flex-direction: column;
  flex: 1 0 48%;
  border: 1px solid black;
  margin: 6px;
  min-width: 48%;
  min-height: 44%;
  max-height: 48%;
  background-color: white;
}

.list-wrapper {
  overflow: auto;
  /*height: 100%;*/ /*Retiré puisque causait des problèmes étranges où la liste
  prend plus de place que nécessaire et empiette sur les éléments plus bas */
  margin-top: 15px;
  margin-bottom: 15px;
}

.crossroad > .window > .list-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.crossroad > .window:hover {
  outline: 1px solid rgb(30,30,30);
  border-color: rgb(30,30,30);
}

.crossroad > .window:hover label {
  background-color: rgb(65, 65, 65);
}

.window label {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 20px;
  background-color: black;
  color: white;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 1px black;
}

.grid-list {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  font-size: 90%;
  overflow: auto;
}

.grid-list th, .grid-list td {
  text-align: left;
  border-bottom: 1px solid black;
  padding: 5px;
  height: 100%;
}

.grid-list tbody {
  width: 100%;
}

.grid-list th {
  border-bottom-width: 2px;
  /* min-width: 65px;  */
}

.grid-list tbody {
	overflow-y: auto;
}

.grid-list tbody tr:last-child td {
  border-bottom: none;
}

.grid-list tbody tr:nth-child(odd):not(:hover) {
  background-color: #ddd;
}

.grid-list tbody tr:nth-child(even):not(:hover), .grid-list thead tr {
  background-color: white;
}

.grid-list tbody tr:hover {
  background-color: rgb(60,135,255);
}

.grid-list:hover {
  cursor: default;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

/*/////////////////////////////////////////////////////////////////////////////
// Buttons
/////////////////////////////////////////////////////////////////////////////*/
a.btn {
	color: white;
}

.btn {
  display: inline-block;
  color: white;
  text-shadow: 1px 1px 1px black;
  min-height: 32px;
  min-width: 50px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 1px 0.1px black;
}

.btn:hover{
  box-shadow: 0 0 2px 0.1px black;
}

.btn > * {
  padding: 7.5px 10px;
}

.btn label {
  padding: 7.5px 10px 7.5px 0;
}

.btn:hover, .btn label:hover {
  cursor: pointer;
}

.btn-margin {
  margin: 5px;
}

.btn-blue {
  background: linear-gradient(rgb(60, 60, 60), rgb(50, 50, 50));
}

.btn-blue:hover:not(:disabled) {
  background: linear-gradient(rgb(50, 100,210), rgb(37, 70, 190));
}

.btn-red {
  background: linear-gradient(rgb(60, 60, 60), rgb(50, 50, 50));
}

.btn-always-red {
  background: linear-gradient(rgb(190,40,40), rgb(150,20,20));
}

.btn-red:hover {
  background: linear-gradient(rgb(255,35,35), rgb(200,40,40));
}

.btn-orange {
  background: linear-gradient(rgb(60, 60, 60), rgb(50, 50, 50));
}

.btn-orange:hover {
  background: linear-gradient(rgb(230,160,40), rgb(190,130,20));
}

.btn-gray {
  background-color: rgb(150,150,150);
}

.btn-gray:hover {
  background-color: rgb(170,170,170);
}

.btn-green {
  background: linear-gradient(rgb(60, 60, 60), rgb(50, 50, 50));
}

.btn-green:hover {
  background: linear-gradient(rgb(55, 180, 55), rgb(40, 150, 40));
}

.btn-sm {
  display: flex;
  padding: 5px;
  justify-content: center;
  flex: 0 0 10px;
  /*min-height: 16px;
  min-width: 25px;*/
  font-size: 90%;
  align-items: center;
}

.btn-md {
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.btn-md > * {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.btn-lg {
	width: 80%;
}

form {
  position: relative;
}

.btn-submit {
  position: absolute;
  margin-top: 10px;
  right: 0;
}

.input-dud {
  margin-top: 5px;
  visibility: hidden;
}

label.lang {
  position: absolute;
  left: -22.5px;
  margin-top: 12.5px;
  font-size: 85%;
  color: rgb(222,222,222);
  text-shadow: 1px 1px 1px black;
}

label.lang.up {
  visibility: visible;
}

/*/////////////////////////////////////////////////////////////////////////////
// Icons
/////////////////////////////////////////////////////////////////////////////*/

i {
  text-shadow: none;
}

.i-black {
  color: black;
}

.i-sm {
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 120%;
}

.i-control {
  background: #F09819;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #EDDE5D, #F09819);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #EDDE5D, #F09819); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: black;
  border-radius: 1000px;
  padding: 3.5px;
  font-size: 75%;
}

.i-control:hover {
  background: #00c6ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #0072ff, #00c6ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

/*/////////////////////////////////////////////////////////////////////////////
// Inputs
/////////////////////////////////////////////////////////////////////////////*/

input, select, textarea {
  margin: 5px;
  padding: 7.5px;
  border: 1px solid black;
  border-radius: 1.5px;
  width: 320px;
}

textarea {
  font-size: 13.3333px;
  font-family: Arial;
}

textarea::placeholder {
  font-size: 13.3333px;
  font-family: Arial;
}

input[type="checkbox"], input[type="radio"] {
  margin: 5px 0 5px 5px;
  border: none;
  width: inherit;
}

input[type="file"] {
  height: 0.01px;
  width: 0.01px;
  opacity: 0;
  position: relative;
  visibility: hidden;
  z-index: -1;
}

.input-std {
  width: 320px;
}

.input-lg {
  width: 500px;
  max-width: calc(100% - 10px);
}

.input-md {
    width: 235px;
    max-width: 66%;
}

select.input-md {
  width: 251.5px;
}

.input-sm {
  width: 160px;
}

.input-tiny {
  width: 50px;
}

.input-readonly{
  background-color: rgb(128 128 128 / 92%);
}

.input-separation{
  border-bottom: 2px solid black;
  padding: 10px;
}

.input-separation-sm{
  border-bottom: 1px solid gray;
  padding: 5px;
}

/*/////////////////////////////////////////////////////////////////////////////
// Lists
/////////////////////////////////////////////////////////////////////////////*/

.list {
  /* width: 800px; */
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  overflow: auto;
}

.list tr:nth-child(odd) {
  background-color: #ddd;
}

.list tr:nth-child(even) td {
  background-color: white;
}

.list-wrapper tr:nth-child(odd) {
  background-color: white;
}

.list-wrapper tr:nth-child(even) {
  background-color: #ddd;
}

.list td.options {
  min-width: 1% !important;
  width: 1%;
  white-space: nowrap;
}

.list tr:hover td {
  background-color: rgb(60,135,255);
  cursor: default;
}

.list td, .list th {
  border: 1px solid black;
  padding: 5px;
}
.list th {
  text-align: left;
}

.list th {
  padding: 3px 6px;
  font-weight: normal;
  color: white;
  text-shadow: 1px 1px 1px black;
  background: linear-gradient(rgb(85, 85, 85), rgb(75, 75, 75));
}

/*/////////////////////////////////////////////////////////////////////////////
// Images
/////////////////////////////////////////////////////////////////////////////*/

.list-photo tr:first-child {
  white-space: nowrap;
}

.list-photo td > div {
  max-height: 115px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-photo td, .list-photo th {
  justify-content: center;
}

.list-photo .image-container {
  background-color: rgba(40,40,40,0.8);
  width: 150px;
  max-width: 90%;
  height: 150px;
}

.list-photo td .image-container {
  width: 75px;
  height: 75px;
}

.image-new {
  border: 1px solid black;
  margin: 5px;
}

.list-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FORMS */
.textarea-wrapper {
  display: flex;
  justify-content: center;
}

/* LABELS */

textarea {
  min-width: 200px;
  min-height: 40px;
}

div.center, p.center, td.center {
  text-align: center !important;
}

.procedureFooter {
  text-align: center;
}

.procedureFooter textarea {
  min-width: 800px;
  max-width: 800px;
}

div.procedure-img-container {
  display: flex;
  width: 300px;
  height: 200px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 15px;
}

div.procedure-img-container > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.formSections .btn-green {
  border-radius: 0;
  opacity: 0.8;
}


textarea.fixed-text {
  resize: none;
}

.image-container.image-new {
  margin: auto;
  width: 350px;
  height: 250px;
}

.btn-choose-photo {
  display: flex;
  flex-grow: 0;
  flex-shrink: 1;
  margin: 40px 35% 10px 35%;
  justify-content: center;
  text-align: center;
  align-items: center;
  /*margin-top: 40px;
  margin-left: 36.5%;*/
}

.list-container > .list {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.labelinput {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 400px;
  max-height: 32px;
  height: 32px;
  margin: 5px 0;
}

.labelinput label {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 85%;
  color: grey;
  background-color: white;
  border: 1px solid black;
  border-right: none;
  padding: 7.5px;
  line-height: 115%;
}

.labelinput input {
  flex-grow: 2;
  margin: 0;
}

.labelinput.fit {
  max-width: fit-content;
  width: fit-content;
}

.labelinput input[type="date"] {
  flex-grow: 0;
  flex-shrink: 1;
}

h4.highlight {
  background-color: rgba(255,255,0, 0.5);
}

td.price {
  text-align: right;
}

/*//////////////////////////////////////////////////////////////////////////////
// Fixed sections
//////////////////////////////////////////////////////////////////////////////*/

.submits.fixed-right {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,0.25);
  background-color: var(--bg-white);
  max-width: 12.5%;
  width: 220px;
  align-items: center;
  border: 1px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
}

.submits.fixed-right input {
  /*max-width: 180px;*/
  width: 90%;
  height: 30px;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-grow: 1;
  margin: 2px;
  outline: none;
}

.submits.fixed-right button {
  width: 90%;
  padding: 5px 7.5px;
}

.submits.fixed-right button:not(:last-child){
  margin-bottom: 5px;
}

section.jump {
  z-index: 999;
  background: linear-gradient(to bottom, rgb(200,200,200), rgb(150,150,150));
  border: 1px solid gray;
  max-width: 12.5%;
  width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.jump label {
  display: block;
  margin: 0;
  padding: 15px;
  color: white;
  background: linear-gradient(to bottom, rgb(50,50,50), rgb(20,20,20));
  font-size: 120%;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.jump ul {
  list-style: none;
  font-size: 18px;
  margin: 0;
  padding: 0;
  width: 100%;
}

section.jump li {
  border-bottom: 1px solid black;
  padding: 10px 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.jump a:hover li {
  background: -webkit-linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
  background: linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
  background: linear-gradient(rgb(50, 100, 210), rgb(37, 70, 190));
  color: white;
  text-shadow: 1px 1px 1px black;
}

section.jump .margin-left {
  padding-left: 45px;
}

section.fixed-right {
  position: fixed;
  right: 0px;
  top: 25px;
}

/*//////////////////////////////////////////////////////////////////////////////
// Tooltips
//////////////////////////////////////////////////////////////////////////////*/

div.tooltip-container {
  position: absolute;
  font-weight: normal;
}

div.tooltip {
  position: relative;
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  background: linear-gradient(to bottom right, rgb(50,50,50), rgb(20,20,20));
  color: white;
}

div.tooltip .text {
  font-size: 90%;
  max-width: 400px;
}

div.tooltip i.arrow {
  color: black;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 4px);
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.spanTooltip {
  position: relative;
  display: inline-block;
}

.spanTooltip .spanTooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #191919;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  position: absolute;
  bottom: 37px;
  left:-37px;
  z-index: 1;
}

.spanTooltip:hover .spanTooltiptext {
  visibility: visible;
}

/*/////////////////////////////////////////////////////////////////////////////
// Employee table
/////////////////////////////////////////////////////////////////////////////*/

.employeeTableContainer{
  width: 100%;
  margin: 0 auto;
}

.employeeTable{
  width: 100%;
  /* table-layout: fixed;  */
  border: 1px solid #f7f7f7;
}

.ETRowFirst{
  background: rgb(207,207,207);
  background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(38 38 38) 100%);
}

.ETRow{
  background: rgb(33,33,33);
  background: linear-gradient(0deg, rgb(36 36 36) 0%, rgb(42 42 42) 100%);
  transition: 0.3s;
}

.ETRow:hover{
  background: rgb(33,33,33);
  background: linear-gradient(0deg, rgb(77 77 77) 0%, rgb(93 93 93) 100%);
}

.ETCellFirst{
  font-size: 18px;
  color: #e1dddd;
  padding: 9px;
}

.ETCell{
  font-size: 18px;
  color: #e1dddd;
  padding: 10px;
}

.viewProfileButton{
  text-align: center;
  /* vertical-align: middle; */
  margin:auto;
  display:block;
  width: 120px;
  height: 25px;
}

.manageIcon{
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  margin-left: 5px;
}

#searchName{
  border-radius: 5px;
  position: relative;
  width: 160px;
  left: 330px;
}
#searchIcon{
    position: relative;
    left: 330px;
}

/*/////////////////////////////////////////////////////////////////////////////
// Fixed popup
/////////////////////////////////////////////////////////////////////////////*/

.fixedPopupSucces{
  background-color: #92ff64;
  border: 1px solid #006629;
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 20px;
  color : black;
  font-size : 20px;
  border-radius: 7px;
}

/*/////////////////////////////////////////////////////////////////////////////
// Employee profile
/////////////////////////////////////////////////////////////////////////////*/

#employeeProfilePicture{
  display: block;
  max-width:300px;
  max-height:300px;
  width: auto;
  height: auto;
}

.employeeProfile{
  width: 60%;
  margin: auto;
  background-color: rgb(137 137 137 / 10%);
  padding: 30px;
}

.profileDiv{
  display: inline-block;
  vertical-align: top;
  padding: 5px;
}

.profileCat{
  padding: 5px;
  font-size: 20px;
}

.invisibleInput{
  visibility: hidden;
  width: 0px;
  height: 0px;
  position: fixed;
}

/*/////////////////////////////////////////////////////////////////////////////
// Employee creation form
/////////////////////////////////////////////////////////////////////////////*/

.checkboxForm{
  color: white;
}

/*/////////////////////////////////////////////////////////////////////////////
// Employee documents
/////////////////////////////////////////////////////////////////////////////*/

.mydocuments{
  background-color: rgb(17 17 17 / 50%);
  color: #dddddd;
  padding: 10px;
  font-size: 18px;
}

.mydocuments ul li:hover{
  color: #ffffff;
  background-color:rgb(19 19 19 / 50%);
}

.jobRatings{
  line-height: 27px;
  color:rgb(21 21 21);
}

.jobComments{
  width:fit-content;
}

.jobCommentstoPrint{
  width: 100%;
}

.evaluationCheckboxSat{
  position:absolute;
  right:140px;
}

.evaluationCheckboxUnsat{
  position:absolute;
  right:40px;
}

.evaluationCbxText{
    line-height: 25px;
}

.evalRadios{
  text-align:right;
  color: white;
}

.evalList{
  text-decoration: underline;
  line-height:130%;
}

.evalListNoLink{
  line-height:130%;
}

.evalList:hover{
  text-decoration: underline;
  color:rgb(219 219 219);
}

.covlogoOnPrint{
  width:0px;
  height:0px;
}

/*/////////////////////////////////////////////////////////////////////////////
// Print style
/////////////////////////////////////////////////////////////////////////////*/

@media print{
  .jobRatings h2{font-size: 80%;}
  .evaluationCbxText{font-size: 80%;}
  input{page-break-inside: avoid;}

  .printNoCut {
    page-break-inside: avoid;
    display: inline-block;
  }

  .covlogoOnPrint{
    width:auto;
    height:auto;
    max-width: 200px;
    width: 50%;
    position:absolute;
    right: 0px;
    visibility: visible;
  }
  .evalRadios{
    position:relative;
    left:187px;
  }
}

/*/////////////////////////////////////////////////////////////////////////////
// Training pdf
/////////////////////////////////////////////////////////////////////////////*/

#trainingImage{
  max-width: 8.5in;
  max-height: 11in;
  display:block;
    margin: 0px auto;
}

.trainingAddedTextDate{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  z-index: 999;
  position: absolute;
  color: black;
  left:1030px;
  top:285px;
  font-size:22px;
}

.trainingAddedTextName{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  z-index: 999;
  position: absolute;
  color: black;
  left:555px;
  top:340px;
  font-size:22px;
}

@media print{
  .trainingAddedTextName{
    position: fixed;
    left:205px;
    top:340px;
  }
  .trainingAddedTextDate{
    position: fixed;
    left:555px;
    top:285px;
  }
}

/*/////////////////////////////////////////////////////////////////////////////
// Competence matrix
/////////////////////////////////////////////////////////////////////////////*/

.matrixRBContainer{
  display:inline-block;
  position:absolute;
  right:0px;
}

.matrixRButtonDesc{
  position:absolute;
  right:-15px;
  font-size: 90%;
}

/*/////////////////////////////////////////////////////////////////////////////
// Margin
/////////////////////////////////////////////////////////////////////////////*/
.m-0 {
  margin: 0px !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.mb-2 {
  margin-bottom: 10px !important;
}
.mb-3 {
  margin-bottom: 15px !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mt-2 {
  margin-top: 10px !important;
}
.mt-3 {
  margin-top: 15px !important;
}
.ml-2 {
  margin-left: 10px !important;
}

/*/////////////////////////////////////////////////////////////////////////////
// Texts
/////////////////////////////////////////////////////////////////////////////*/
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/*/////////////////////////////////////////////////////////////////////////////
// Others
/////////////////////////////////////////////////////////////////////////////*/
.border-box {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}
.hide {
  opacity: 0;
}
.list-circle {
  list-style-type: circle !important;
}
.w-auto {
  width: auto;
}
.cursor-pointer {
  cursor: pointer;
}