@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: "rubikbold";
  src: url("../fonts/rubik-bold-webfont.woff2") format("woff2"),
    url("../fonts/rubik-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "rubikregular";
  src: url("../fonts/rubik-regular-webfont.woff2") format("woff2"),
    url("../fonts/rubik-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "rubiklight";
  src: url("../fonts/rubik-light-webfont.woff2") format("woff2"),
    url("../fonts/rubik-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "rubikmedium";
  src: url("../fonts/rubik-medium-webfont.woff2") format("woff2"),
    url("../fonts/rubik-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  height: 100%;
  position: relative;
}
body {
  margin: 0;
  font-family: "rubikregular", sans-serif !important;
  font-size: 17px;
  line-height: 25px;
  text-align: left;
  color: #333;
  height: 100%;
  position: relative;
}
header,
section,
footer,
article,
aside {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
}
a.link {
  color: #0178bc;
}
h1, h2, h3, h4, h5 {
  font-weight: normal;
  font-family: "rubikbold", sans-serif;
}

*{ box-sizing: border-box;}

.wrapper {
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
.container {
  padding: 25px;
}

/*authentification*/
.authentification_page {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(../img/bg.gif);
}
.authentification_page:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*background: rgba(0, 0, 0, 0.1);*/
}
.authentification_box {
  background: #fff;
  position: relative;
  padding: 20px;
  width: 400px;
  max-width: 100%; box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.authentification_logo {
  text-align: center; width: 200px;
  position: relative; margin: auto;
  margin-bottom: 30px;
}
.authentification_title {
  text-align: center;
  text-transform: uppercase;
  font-family: "rubikbold", sans-serif;
  font-size: 25px;
}
.authentification_page .input {
  text-align: left;
}
/*end of authentification*/

header {
  width: 100%;
  height: 60px;
  line-height: 60px;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
}
header .navbar {
  background: linear-gradient(to right, #0178bc, #00bdda);
  color: #fff; height: 60px;
  margin-left: 240px;
}
header .navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header .navbar ul li {
  float: left;
}
header .navbar .navLink {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 25px;
  text-align: center;
}
header .navbar .navLink:hover {
  background: #fff;
  color: #00bdda;
}
header .navbar .account_nav .navLink {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: solid 2px #dfdfdf;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  margin: 12px 20px 0 10px;
}

header .navbar .account_nav img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .lobo_mobile,
header .navbar_left {
  display: none;
}
header .navbar_right {
  float: right;
}

.notificationLink {
  position: relative;
}
.notificationLink span {
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: red;
  color: #fff;
  font-size: 12px;
  font-family: "rubiklight", sans-serif;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}

/*import_popup*/
.import_popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6000;
  display: none;
}
.import_popup.show {
  display: flex;
}
.import_popup_block {
  width: 300px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  line-height: 1;
}
.import_popup_title {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-family: "rubikmedium", sans-serif;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(to right, #0178bc, #00bdda);
  position: relative;
}
.import_popup_title .close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-family: "rubiklight", sans-serif;
  border: solid 1px #fff;
}
/*End of import_popup*/

/*aside*/
aside {
  width: 240px; height: 100%; display: flex;
  position: fixed; flex-direction: column;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 1px 0 20px #ccc;
  z-index: 2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

aside .logo {
  width: 240px;
  font-family: "rubiklight", sans-serif;
  color: #0178bc;
  text-transform: uppercase;
  text-align: center;
  float: left;
}
aside .logo img {
  display: block;
  margin: 5px auto;
  height: 80px;
}

.scroll_aside {
  position: relative;
  overflow: auto;
  height: calc(100% - 150px);
  touch-action: auto;
}

aside nav {
  font-family: "rubiklight", sans-serif;
}
aside nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside nav ul li + li {
  border-top: solid 1px #efefef;
}
aside nav a {
  display: block; position: relative;
  padding: 15px 15px 15px 0;
  font-size: 15px;
  color: #54667a;
  line-height: 21px;
}
aside nav a .icon {
  width: 50px;
  text-align: center;
  display: inline-block;
  font-size: 21px;
}
aside nav a .icon svg{ fill: #54667a; width: 30px;}
aside nav a:hover,
aside nav .activ a {
  color: #000;
}
aside nav a:hover .icon,
aside nav .activ a .icon {
  color: #00bdda;
}
aside nav .activ a {
  border-left: solid 3px #00bdda;
  background: #f5f5f5;
}
aside nav a:hover .icon svg, aside nav .activ .icon svg{ fill: #00bdda; }
aside nav a .nbr{
  display: inline-block; width: 20px; height: 20px;
  line-height: 20px; color: #FFF; background: red;
  border-radius: 100%; font-size: 10px; text-align: center;
  margin-left: 5px;
}

/*sub menu*/
aside nav li ul {
  background: #f5f5f5;
  display: none;
}
aside nav li ul a {
  padding: 7px 25px;
}
aside nav li ul li + li {
  border-top: solid 1px #ddd;
}
/*end of sub menu*/

/*footer_aside*/
.footer_aside {
  display: flex;
  width: 240px;
  height: 60px;
  line-height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: solid 1px #dfdfdf;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.footer_aside a, .footer_aside form button {
  display: block;
  height: 60px;
  text-align: center;
  color: #54667a;
  font-size: 17px;
}
.footer_aside form{ display: block; margin: 0; padding: 0;}
.footer_aside form button{
  background: transparent; border: none; width: 100%; cursor: pointer;
}

.notification_popup {
  display: none;
}
.notification_popup.show {
  display: block;
}
.notification_block {
  width: 300px;
  background: #fff;
  position: fixed;
  bottom: 60px;
  left: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  line-height: 1;
}
.notification_title {
  padding: 10px 30px; text-align: center;
  font-family: "rubikmedium", sans-serif;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(to right, #0178bc, #00bdda);
}
.notifications_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow: auto;
}
.notifications_list li + li {
  border-top: solid 1px #ccc;
}
.notifications_list li a {
  display: block; height: inherit; width: 100%;
  font-size: 15px; padding: 10px 30px;
}
.notifications_list li a:hover {
  background: #f0f0f0;
}

.footer_aside a.all_notifications {
  display: block;
  text-align: center;
  padding: 10px;
  border-top: solid 1px #ccc;
  font-family: "rubikbold", sans-serif;
  font-size: 12px; height: inherit;
}
/*end of footer_aside*/

/*end of aside*/

section {
  padding-top: 60px;
  margin-left: 240px;
  position: relative;
  background: #f2f7f8;
  height: 100%;
  overflow: auto;
}
article {
  margin: 40px 0;
}
article p {
  margin: 0 0 10px 0;
}
article p + p {
  margin-top: 20px;
}
article + article {
  margin-top: 35px;
}
article a:hover {
  color: #8d3b90;
}
p a {
  color: #48b3dd;
}
p strong {
  font-family: "rubikbold", sans-serif;
  font-weight: normal;
}
.box {
  background: #fff;
  padding: 20px;
}
h1 {
  color: #54667a;
  font-size: 29px;
}
h2 {
  font-size: 21px;
  line-height: 25px;
  color: #000;
  margin: 0 0 10px 0;
  padding: 0;
  text-transform: uppercase;
  text-align: left;
}
h2:after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 90px;
  height: 1px;
  background: #00bdda;
}

h3 {
  font-size: 17px;
  line-height: 20px;
  text-transform: uppercase;
  color: #00bdda;
  margin: 30px 0 5px 0;
  padding: 0;
  text-align: left;
}

/*breadcrumb*/
.breadcrumb {
  font-size: 15px;
  color: #54667a;
}
.breadcrumb ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: left;
  font-family: "rubiklight", sans-serif;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li + li:before {
  padding: 0 5px;
  color: #0178bc;
  content: "";
  font-family: "FontAwesome", sans-serif;
}
.breadcrumb ul a {
  color: #0178bc;
}
.current_date {
  float: right;
}
/*end of breadcrumb*/

/*table*/
.responsiveTable {
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  font-weight: normal;
  padding: 12px 9px;
  background: #0178bc;
  font-family: "rubikmedium", sans-serif;
  font-size: 15px;
  color: #fff;
}
.table tr:nth-child(2n + 1) {
  background: #f5f5f5;
}
.table td {
  padding: 9px;
  border-top: solid 1px #e1e1e1;
}
.table .action {
  text-align: center;
  width: 150px;
}
.table .action a.action_link,
button.action_link {
  display: inline-block;
  margin: 0 5px;
  font-size: 21px;
  border: none;
  background: transparent;
}
.table th.total, .table td.total{ text-align: center; background: #54667a; color: white;}
a.action_link.show {
  color: #3c763d;
}
a.action_link.edit {
  color: #0178bc;
}
a.action_link.delete,
button.action_link.delete {
  color: #bc0101;
}
button.action_link {
  margin: 0;
  padding: 0;
}
form.action_form {
  display: inline-block;
  margin: 0;
  padding: 0;
}




.pagination {
  margin: 20px 0;
  padding: 10px 0;
  border-top: solid 1px #e1e1e1;
  color: #54667a;
  text-align: center;
  list-style-type: none;
}
.pagination li {
  display: inline-block;
}
.pagination a,
.pagination .active span {
  display: inline-block;
  padding: 5px 15px;
  border: solid 1px #ddd;
}
.pagination a:hover,
.pagination .active span {
  background: #0178bc;
  color: #fff;
}
.pagination .disabled {
  display: none;
}

.options {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.num_rows {
  color: #54667a;
}
.buttons form.action_form {
  position: relative;
  top: 1px;
}
.buttons a,
.buttons button {
  display: inline-block;
  padding: 0 15px;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  background: #00bdda;
  border: solid 1px #00bdda;
  transition: 0.3s;
}
.buttons a.green,
.buttons button.green {
  background: #3c763d;
  border: solid 1px #3c763d;
}
.buttons a.green:hover,
.buttons button.green:hover {
  color: #3c763d;
}
.buttons a:hover,
.buttons button:hover {
  background: #fff;
  color: #00bdda;
}
.buttons a + a {
  margin-left: 10px;
}

/*end of table*/

/*simpleList*/
.simpleList {
  list-style-type: none;
}
.simpleList li {
  position: relative;
  padding: 5px 0;
  box-sizing: border-box;
}
.simpleList li:before {
  content: "";
  font-family: "FontAwesome", sans-serif;
  font-size: 11px;
  color: #0178bc;
  position: absolute;
  left: -17px;
}
/*end of simpleList*/

.simpleTable {
  margin-top: 20px;
  width: 100%;
}
.simpleTable th {
  border: none;
  background: #246493;
  color: #000000;
  font-weight: normal;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
.simpleTable th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
}
.simpleTable tr:nth-child(2n + 2) {
  background: rgba(0, 0, 0, 0.1);
}
.simpleTable td {
  padding: 5px 10px;
}

/*Form input*/
.input {
  padding: 10px;
}
.input.only_one {
  padding: 10px 0;
}
.input label,
.input .basic_form_value {
  display: block;
  padding: 10px;
}
.input .basic_form_value img{ max-width: 300px; max-height: 100px;}
.input input,
.input select,
.input textarea {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  border: none;
  background: #f0f0f0; outline: none;
}
.input select[multiple="multiple"] {
  height: 130px;
}
.input textarea {
  height: 200px;
}
.input input[type="radio"],
.input input[type="checkbox"] {
  display: inline-block;
  padding: 0;
  margin: 0 3px 0 5px;
  width: 18px;
  height: 18px;
}
.input input[type="submit"],
.input a.submit,
.input button.submit {
  background: #54667a;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  width: auto;
  font-size: 19px;
  padding: 0 30px;
  border: none;
  height: 40px;
  line-height: 40px;
}
.input.ckeditor .ck-editor__editable_inline:not(.ck-comment__input *){
  height: 200px;
}
.basic_form {
  color: #54667a;
}
.basic_form label {
  text-align: right;
}
.basic_form label.left_label {
  text-align: left;
}
.basic_form .input_description {
  font-size: 13px;
  color: #000;
}
.basic_form .buttons {
  text-align: right;
}
.basic_form .buttons input[type="submit"] {
  background: #00bdda;
  font-size: 14px;
  padding: 0 20px;
}
.basic_form .map{
  width: 100%; height: 300px; margin-bottom: 30px;
}
.basic_form .map #map, .basic_form .map iframe{ width: 100%; height: 100%;}
.leaflet-control-attribution { display: none;}

.basic_form .images_drag_block{
  background: #ececec; height: 250px; padding: 10px; position: relative;
}
.basic_form .images_drag_block form{ height: 100%;}
.basic_form .images_drag_block input[type="file"]{
  width: 0; height: 0; visibility: hidden; opacity: 0;
  position: absolute; top: 0; left: 0;
}
.basic_form .images_drag_content{
  border: solid 1px #cecece; height: 100%; padding: 10px;
  text-align: center; position: relative;
  display: flex; flex-direction: column;
}
.images_drag_content .image_select_loading{
  position: absolute; top: 0; left: 0; color: #FFF;
  width: 100%; height: 100%; background: rgba(0,0,0,0.5);
  display: none;
}
.image_select_icon{ font-size: 50px; margin-bottom: 10px; }
.image_select_desc{ font-size: 12px; line-height: 20px; margin-top: auto;}
.images_drag_content .image_select_loading.show{ display: flex; }
.basic_form .images_drag_content.drag_over{ background:#CCC;}

/*form_gallery*/
.form_gallery{ margin: 20px 0; }
.form_gallery .img_box{
  height: auto; margin: 10px;
  position: relative;
}
.form_gallery .placeholder{
  display: block; width: 100%; height: auto; visibility: hidden;
}
.form_gallery .img_box figure{
  display: block; width: 100%; height: 100%;
  margin: 0; box-sizing: border-box; overflow: hidden;
  position: absolute; top: 0; left: 0;
}
.form_gallery .img_box figure img{ width: 100%; height: 100%; display: block; object-fit: cover;}
.form_gallery .img_box figure a{ display: block; width: 100%; height: 100%; }
.form_gallery .zoom_link{
  display: block; width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
  text-align: center; color: #0178bc; font-size: 50px;
  background: rgba(255,255,255,0.5);
  transform:scale(0,0);
}
.form_gallery .img_box:hover > .zoom_link{
    transform:scale(1,1);
}
.form_gallery .zoom_link .icon{ width: 100%; height: 100%; display: table}
.form_gallery .zoom_link .icon span{ display: table-cell; vertical-align: middle;}
.form_gallery .img_box form button{
  display: block; width: 30px; height: 30px; border-radius: 100%;
  background: red; color: white; border: none; cursor: pointer;
  position: absolute; top: -10px; right: -10px; z-index: 1000;
}

#fancybox-content, #fancybox-wrap{ box-sizing: content-box !important; }
/*end of form_gallery*/


.row_card+.row_card{ margin-bottom: 30px; }
.row_card .card_details{ margin-left: 20px; }
.row_card .card_details h3{ margin: 0 0 20px 0; }
.card_details_value+.card_details_value{ margin-top: 10px; }
.card_details_value span{ color: #000; font-family: 'rubikbold', sans-serif; }

/* checkbox toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}
.toggle:before {
  position: absolute;
  left: 4px;
  bottom: 4px;
  height: 26px;
  width: 26px;
  content: "";
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
.switch input:checked + .toggle {
  background-color: #00bdda;
}
.switch input:checked + .toggle:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.profil_block {
  color: #54667a;
  line-height: 30px;
}
.profil_img {
  width: 100%;
  height: 300px;
  background: #aaa;
}

.croppie-container {
  height: auto !important;
}
.upload-demo-wrap {
  display: none;
  width: 100%;
  height: 750px;
  overflow: auto;
}

.action_block a {
  display: block;
  height: 40px;
  line-height: 40px;
}
.hiddenBlock {
  display: none;
}
/*End of Form input*/


/*gal_images*/
.gal_images img{ max-width: 100%; display: block; }
.gal_images a.gal_images_item{
  display: inline-block; margin: 10px;
}
.gal_images a.gal_images_item img{ height: 100px; }
/*End of gal_images*/


/*profil*/
.card .card_img {
  width: 150px;
  height: 150px;
  margin: auto;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.card .card_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card h4 {
  font-size: 19px;
  margin: 0 10px 0;
  font-family: "rubikmedium", sans-serif;
}
.card h5 {
  font-size: 17px;
  margin: 0 10px 0;
  font-family: "rubikregular", sans-serif;
}
.card_stats {
  margin-top: 30px;
}
ul.card_stats_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul.card_stats_list li {
  position: relative;
}
ul.card_stats_list li + li {
  border-top: solid 1px #ccc;
}
ul.card_stats_list a {
  display: block;
  padding: 10px 15px;
}
ul.card_stats_list a span {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #54667a;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 8px;
  right: 10px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
/*end of profil*/

/*data_states*/
.data_states {
  margin-bottom: 80px;
}


.data_states_item {
  position: relative;
  color: #fff;
  margin: 40px 15px;
  padding-bottom: 60px;
}
.data_states_item a {
  display: block;
  text-align: center;
  padding: 50px 10px 0;
  height: 100%;
}
.data_states_item .icon {
  display: flex; justify-content: center; align-items: center;
  width: 80px; height: 80px; font-size: 40px;
  position: absolute; left: 0; right: 0; top: -42px;
  margin: auto;
  border: solid rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
}
.data_states_item .icon svg{fill:white; width: 50px;}
.data_states_item h3 {
  margin: 0;
  padding: 0;
  font-family: "rubikregular", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-align: center;
}
.data_states_item .data_states_number {
  font-size: 45px;
  font-family: "rubikbold", sans-serif;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.data_states_item.yellow_states,
.yellow_states .icon {
  background: #feb607;
}
.data_states_item.light_states,
.light_states .icon {
  background: #82cdec;
}
.data_states_item.blue_states,
.blue_states .icon {
  background: #219ebc;
}
.data_states_item.green_states,
.green_states .icon {
  background: #16a085;
}
.data_states_item.dark_states,
.dark_states .icon {
  background: #063348;
}
.data_states_item.red_states,
.red_states .icon {
  background: #e74c3c;
}

.data_states_item.purple_states,
.purple_states .icon {
  background: #6f42c1;
}
/*end of data_states*/



/*rate_notes*/
.rate_notes .trokeur_card_img{ margin-bottom: 10px; }
.rate_notes .trokeur_card_img img{ display: block; margin: auto; }
.rate_notes .stars{ text-align: center; font-size: 1.2em; margin-top: 5px; }
.rate_notes .stars .star_yellow{ color: #f9cf0d; }
.rate_notes .stars .star_grey{ color: #dedede; }
.rate_notes .rates_number{ text-align: center; }

.rate_notes_total{ text-align: center; font-size: 1.8em; margin-bottom: 20px; }
.rate_note_item{
  display: table; padding: 5px; margin: 3px 0; position: relative; width: 100%;
}
.rate_note_item_col{ display: table-cell; white-space: nowrap; vertical-align: middle; }
.rate_note_item_col:first-child, .rate_note_item_col:last-child{ width: 1%; }
.rate_note_item .rate_bar{ padding: 0 10px; }
.rate_note_item .rate_progress_bar{
  background: #EEE; width: 100%; height: 15px;
  position: relative; overflow: hidden; border-radius: 15px;
}
.rate_note_item .rate_progress_bar_fill{
  position: absolute; top: 0; left: 0;
  height: 100%; background: #f9cf0d;
}
.rate_note_item .star_num_col .num{ font-size: 0.9em; }
.rate_note_item .star_num_col .star{ color: #f9cf0d; }
.rate_note_item .nbr_col{ font-size: 0.7em; }
/*End of rate_notes*/

.msg_ok,
.msg_ko {
  margin-bottom: 10px;
}
.msg_ok .icon {
  width: 50px;
  display: flex;
  background: #3c763d;
  color: #fff;
  font-size: 25px;
}
.msg_ok .msg_txt {
  background: #dff0d8;
  padding: 20px;
  font-size: 15px;
  line-height: 20px;
  border: solid 1px #3c763d;
  color: #3c763d;
}

.msg_ko .icon {
  width: 50px;
  display: flex;
  background: #a94442;
  color: #fff;
  font-size: 25px;
}
.msg_ko .msg_txt {
  background: #f2dede;
  padding: 20px;
  font-size: 15px;
  line-height: 20px;
  border: solid 1px #a94442;
  color: #a94442;
}

span.state {
  display: inline-block;
  font-family: "rubikbold", sans-serif;
  padding: 5px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
span.activ_state {
  background: #dff0d8;
  color: #3c763d;
}
span.edit_state {
  background: #c2e9ff;
  color: #0178bc;
}
span.suspended_state {
  background: #f2dede;
  color: #a94442;
}
span.maintenance_state {
  background: #ffcc00;
  color: #a94442;
}


.state_link{ padding: 3px 5px; display: inline-block; border-radius: 5px; border: solid 1px; font-size: 11px; text-transform: uppercase; font-family: 'rubikbold', sans-serif;}
.state_link.suspend{background: #f2dede; color: #a94442; border-color: #a94442;}
.state_link.suspend:hover{ background: #a94442; color: #FFF; }
.state_link.activ{background: #dff0d8; color: #3c763d; border-color: #3c763d;}
.state_link.activ:hover{ background: #3c763d; color: #FFF; }
.state_link.preview{background: #0178bc; color: #FFF; border-color: #0178bc;}
.state_link.preview:hover{ background: #FFF; color: #0178bc; }

.requiredField {
  background: #dd7171 !important;
  color: #7d0000;
}
.requiredFieldTxt {
  color: #cf0000;
  font-size: 11px;
  font-weight: bold;
  display: none;
}

.imgFull {
  display: block;
  margin: auto;
  max-width: 100%;
  margin-bottom: 10px;
}
.imgCenter {
  display: block;
  margin: 10px auto;
  max-width: 100%;
}
.imgLeft {
  display: block;
  float: left;
  margin: 0 20px 20px 0;
}
.borderImg {
  border-bottom: solid 3px #ce257c;
}

.row_flex {
  display: flex;
}
.row_flex:after,
.row:after {
  display: block;
  content: "";
  clear: both;
}
.flex_wrap{ flex-wrap: wrap;}
.vcenter {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.vbottom {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.hcenter {
  justify-content: center;
}

.row_flex .grow1 {
  flex-grow: 1;
}
.row_flex .shrink0 {
  flex-shrink: 0;
}
.row_flex .shrink1 {
  flex-shrink: 1;
}
.row_flex .shrink2 {
  flex-shrink: 2;
}

.vsep {
  margin: 35px 0;
}

.one_half {
  width: 50%;
  float: left;
}
.one_third {
  width: 33.33%;
  float: left;
}
.two_third {
  width: 66.66%;
  float: left;
}
.one_fourth {
  width: 25%;
  float: left;
}
.three_fourth {
  width: 75%;
  float: left;
}
.one_fifth {
  width: 20%;
  float: left;
}
.one_sixth {
  width: 16.66%;
  float: left;
}

.padding5 {
  padding: 5px;
}
.padding10 {
  padding: 10px;
}
.padding20 {
  padding: 20px;
}
.paddingLeft {
  padding-left: 20px;
}
.paddingRight {
  padding-right: 20px;
}
.clear {
  clear: both;
}
.clearRight {
  clear: right;
}
