/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: 'poppins';
    overflow-x: hidden;
}

.color-rma{
  color: #3D61AD;
}

.opacity-open{
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000;
  position: fixed;
  opacity: 0.6;
  display: none;
}

.body-back{
  background: #f6f7f9;
}

/*  ------------------- login css style ------------------------------ */
.background-auth-img{
  background-image:url("../images/Groupe\ 6400.png");
  background-repeat: no-repeat;
  height:calc(100vh);
  position: relative;
  background-size: cover;
}
.logo{
  width: 200px;
  margin: -70px auto 40px;
}

.logo img{
  width: 100%;
}

.form-login{
   padding: 35px 0;
}
.form-login .form-check{
  font-size: 13px;
}
.form-login i{
  margin-right: 5px;
}
.form-login .eyes-slash{
  color: #c7ba6e;
}
.title-login{
    font-size: 25px;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    color: #3D61AD;
}

.sous-title-login{
    font-size: 13px;
    text-align: center;
    color: #A5A5A5;
}

.label-form-login{
    color: #A5A5A5;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    margin-bottom: 10px;
}

.label-form-login i{
    color: #3D61AD;
}

.form-check-label{
    color: #3D61AD;
    font-weight: 500;
    text-transform: capitalize;
}

.form-check-input:checked{
    background-color: #3D61AD !important;
    border-color: #3D61AD !important;
}

.Forgotten{
    color: #3D61AD;
    float: right;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration:none;
}

.btn-connexion{
    background: #3D61AD;
    color: #fff;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: bold;
}
.section-description p{
  font-size: 13px;
}
.section-description{
  margin-top: 8px;
  font-size: 14px;
}
.section-description span{
  font-weight: 500;
}
.btn-connexion:hover{
    background: #365597;
    color: #fff;
}

.copyright{
  color: #AFAFAF;
  font-size: 12px;
  text-align: center;
  padding: 5px 0px 5px 0px;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
}

.copy-position{
    position: absolute;
    bottom: 0;
}

.eyes-slash{
    position: absolute;
    right: 10px;
    top: 35px;
}
.authentification-main{
  background: #fff;
  margin: auto;
  border-radius: 10px;
  padding: 100px 40px;
  margin: 0;
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ------------------------- End login css style -------------------------------- */


/* ------------------------- sidebar left css   --------------------------------- */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
}
.homeopenside
{
  opacity:.80;
  background-color: black;
  z-index: 1001;
}

.sidebar{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  /* overflow: auto; */
  width: 60px;
  background: #fff;
  padding: 6px 10px;
  z-index: 99;
  transition: all 0.5s ease;
}

.sidebar.open{
  width: 250px;
}

.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #000;
  font-size: 20px;
  font-weight: 600;
  width: 260px;
  opacity: 0;
  transition: all 0.5s ease;
  padding: 30px;
  margin-top: 30px;
}
.sidebar .logo-details .logo_name img{
width: 100%;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  min-width: 40px;
  transition: all 0.4s ease;
  font-size: 22px;
  text-align: center;
  cursor: pointer;
  color:#8E94A0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  min-width: 10px;
  transition: all 0.4s ease;
  font-size: 18px;
  text-align: left;
  color: #3D61AD;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .firstlink i{
  color: #8E94A0;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.sidebar .firstlink i{
  color: #8E94A0;
  height: 60px;
  min-width: 38px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.sidebar .nav-list{
  margin-top: 20px;
  /* height: 100%; */
  padding: 0;
}
.sidebar .first-li{
  position: relative;
  margin: 20px 0;
  list-style: none;
}
.sidebar .first-li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar .first-li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open .first-li .tooltip{
  display: none;
}
.sidebar .first-li .firstlink{
  width: 100%;
  display: list-item;
  height: 40px;
  line-height: 40px;
  border-radius: 8px;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}


.sidebar .first-li .firstlink{
  width: 100%;
  display: list-item;
  height: 40px;
  line-height: 40px;
  border-radius: 12px;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.sidebar.open .first-li .firstlink{
  display: flex;
  height: 35px;
  width: 100%;
  border-radius: 8px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
}
 
.sidebar.open .first-li .firstlink svg{
  width: 80px !important;
  margin: 0px 20px 0px 20px;
}

.sidebar.open .first-li .firstlink #dashboard,.sidebar.open .first-li .firstlink #GC {
  width: 50px !important;
}

.sidebar .first-li .active svg path{
  fill: #3D61AD;
}

.sidebar.open .first-li svg path{
  fill: #3D61AD;
}

.sidebar .first-li .firstlink.active{
background-color: #3d61ad3d;
}
.sidebar .first-li .firstlink.active i
{
  color: #3D61AD;
  font-size: 14px;
}

/* Sidebar Open time**/
.sidebar.open .first-li .firstlink{
 background: #3d61ad3d;
}

/* sous menu list */
.leftmenu-sidebar{
  top: 0px;
  position: absolute;
  left: 50px;
  background: #fff;
  border-radius: 5px;
  display: block !important;
  box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
  width: 220px;
  padding: 10px 15px;
  /* -webkit-animation:linear;
  -webkit-animation-name: open;
  -webkit-animation-duration: 0.1s; */
}

.souslist-head{
  color: #222643;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 12px;
}

.souslist-icone{
cursor: pointer;
}

.sidebar.open .souslist-head{
  display: none;
}
@-webkit-keyframes open {
  0% { left: 0;}
  100%{ left: 100%;}
}
.sidebar.open .first-li .firstlink i{
  color: #3D61AD;
 }
/* Sidebar Open time**/
.sidebar.open li .souslist 
{
  padding: 11px 10px 0px 15px;
  line-height: initial;
  display:block;
  list-style: none;
 
}

.sidebar li .souslist 
{
  list-style: none;
  display: none; white-space: nowrap;
}

.sidebar .souslist li
{
   margin: 0;
   padding: 6px;
   font-size: 12px;
   color: #3D61AD;
}

.sidebar .souslist li:hover{
  color: #0923e6;
  font-weight: 500;
}

.sidebar .souslist li svg{
    margin-right: 10px;
}

.sidebar.open .souslist-active svg .icon-sidebar{
  fill: #0070E8;
  font-weight: 700;
}

.souslist-active
{
   color: #0070E8 !important;
   font-weight: 700;
}

/***/



.sidebar .first-li .firstlink .link_togg
{
  opacity: 0;
  transition: 0.2s;
}
.sidebar.open .first-li .firstlink .link_togg
{
  opacity: 1;
  width: 100%;
  text-align: right;
  cursor: pointer;
  transition:1.8s;
}


.sidebar .first-li .firstlink .links_name{
  color: #3D61AD;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open .first-li .firstlink .links_name{
  opacity: 1;
  pointer-events: auto;
  text-align: left;
}
.sidebar .first-li .firstlink:hover .links_name,
.sidebar .first-li .firstlink:hover i{
  transition: all 0.5s ease;
  color: #3D61AD;
}
.sidebar .first-li .firstlink i{
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  border-radius: 12px;
}



/* Sidebar right */
#btnpanier{
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: #3D61AD;
  color: #fff;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 90;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.badge-btnpanier{
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF3B3B;
  width: 20px;
  font-size: 12px;
  height: 20px;
  border-radius: 50%;
}
.sidebar-right {
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0px;
  background: #fff;
  z-index: 101;
  transition: all 0.5s ease;
}

.sidebar-right.openright {
  width: auto;
}
/* ------------- */



.home-section{
  position: relative;
  background: #F6F7F9;
  min-height: 100vh;
  top: 0;
  left: 60px;
  width: calc(100% - 60px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
  overflow: hidden;
}
.home-section .header-app{
  width: 100%;
  height: 130px;
  background-position: bottom;
  padding: 20px 15px 15px 15px;
  /* max-height: 202px; */
  background: linear-gradient(to bottom , rgba(246,247,249,0) -26.48% ,rgba(246,247,249,1) 100.52%), url(../images/Background.png);
  background-size: cover !important;
}
.home-section .header-app2{
  width: 100%;
  background-position: center;
  padding: 20px 15px 0px 15px;
  min-height: 140px;
  /* max-height: 202px; */
  background: linear-gradient(to bottom , rgba(246,247,249,0) -26.48% ,rgba(246,247,249,1) 100.52%), url(../images/Background.png);
  background-size: cover !important;
}
.home-section .content-page{
  padding: 20px 20px 20px 20px;
  position: absolute;
  margin-top: 20px;
  top: 85px;
  width: 100%;
}
.home-section2 .content-page2{
  padding: 20px 60px 20px 60px;
  width: 100%;
}
.rma-logo-head
{
  /* width: 92%; */
  margin-top: -10px;
}

.profilecard
{
  background-color:#fff;
  width: 197px;
  padding: 5px 15px 5px 15px;
  /* margin-top: 7px; */
  border-radius:27px;
  position: absolute;
    right: 10px;
    top: 37px;
}
.profilecard .top-content
{
  display: flex;
}

.profilecard span 
{
  padding-left:6%;
  font-size: 14px;
  font-weight: 500;
}

.profil-name{
  font-size: 12px;
  line-height: 14px;
  padding: 5px 0px 0px 5px;
  color: #3D61AD;
  font-weight: 700;
  text-transform: capitalize;
}

.profil-role{
  font-size: 12px;
  padding-left: 5px;
  color: #000;
}

.profilecard img 
{
  width: 45px;
  height: 45px;
  border:1px solid #ccc;
  border-radius: 50%;
}
.drag-file-rapport{
  justify-content: center;
  display: grid;
}


.profilecard .badge-logout
{
  display: none;
}

.openlogout
{
  margin-top:3px;
  background-color: #ebcaca;
  padding: 2px;
  font-size:12px;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  color:#FF5B5B;
  text-align: center;
  font-weight:400;
  display: block;
}

.openlogout:hover{

}

.profilecard .dropdwnlogout
{
  cursor: pointer;
  margin-left: auto;
  font-size: 12px;
  margin-top: 5px;
  color: #3D61AD;
}
.profil-name a{
  text-decoration: none;
  color: #3d61ad;
}


.search-input-header{
  width: 50%;
  margin: 0 auto;
}

.content-search{
  margin-bottom: 30px;
}

.btn-rech-header{
  background: #3D61AD !important;
  color: #fff !important;
}

input.empty {
  font-family: 'lato', FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
/**dropdown v0 */
/* .profilecard .btndwn-profile button
{
  background-color: transparent;
  padding:1px 4px 2px 4px;
  border:none;
  color:#000;
}

.profilecard .btndwn-profile .dropdown-menu 
{
  position: absolute; transform: translate3d(0px, 24px, 0px); top: 0px; left: 0px; will-change: transform;
} */

/**dropdown v0 */

@media (max-width: 420px) {
    .sidebar .first-li .tooltip{
      display: none;
    }
    .authentification-main{
      padding: 55px 0;
    }
    .form-login .form-check {
      font-size: 10px;
  }
  .content-block .avatar img{
    object-fit: contain !important;
  }
  .pige-info{
    display: block !important;
  }
}

/* .search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, .1);
} */

.search .searchinput {
  height: 40px;
  text-indent: 25px;
  border: 0px;
  border-radius: 8px;
}

.search .searchinput:focus {
  box-shadow: none;
  border: none;
}

.search .search-pos{
  position: absolute;
  top: 14px;
  left: 16px;
  color: #ccc;
}

.search .btnshowsearch {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  width: 40px;
  line-height:15px;
  background: #3D61AD;
  color: #fff;
}

.search .btnshowsearch:hover{
  background: #3D61AD;
  color: #fff;
}





/* Menu Info content***/
.tab-link
{
  background-color: #f6f7f9;
  padding: 5px 30px 0px 30px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-align: center;
  position: relative;
  bottom: 30px;
  text-decoration: none;
  color: #000;
}

.tab-link-v
{
 width: auto;
 padding: 10px 40px 5px 40px;
 text-decoration: none;
 color: #9A9A9A;
 text-transform: uppercase;
 font-weight: 500;
 cursor: pointer;
}

.tab-link-v:hover{
  color: #3D61AD;
}

.tab-link-v:hover span svg path{
  fill: #3D61AD;
}

/* .mydiv .tab-link-v.tab-link span
{
 border-bottom:2px solid #3D61AD;
 padding-bottom: 3px;
 color: #3D61AD;
 font-weight: 700;
} */
/* .mydiv
{
  display: flex;
  font-size: 13px;
  padding: 5px;
  margin-bottom: 10px;
} */
/***/
.content-block .avatar{
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
}
.content-block .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-content{
  width: 100%;
  overflow-x: hidden;
  overflow-y:auto ;
  height: 1070px;
  border-radius: 5px;
  box-shadow: 0 0 40px rgb(51 51 51 / 10%);
  padding: 10px;
  background: #fff;
}

.block-content-right{
  width: 100%;
  border-radius: 5px;
  padding: 0px 10px;
}
.fichiers-rapport .type-rapport p{
  margin-left: -50%;
}
.fichiers-rapport .type-rapport img{
  padding-left: 15px;
}
.card-horizontal {
  display: flex;
  flex: 1 1 auto;
  padding: 10px;
  /* border: 1px solid #ccc; */
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
  background: #fff;
  height: 50vh;
}

.btn-card-top{
  position: absolute;
  top: 5px;
  right: 10px;
  
}
/* .card-img{
  height: 160px;
} */

.card-title{
  font-size: 18px;
  color: #3D61AD;
  /* text-transform: uppercase; */
  font-weight: 700;
  margin-bottom: 0px;
}

.card-text{
  font-size: 12px;
  color: #000;
  line-height: 14px;
  overflow:hidden;
  margin: 10px 0px 10px 0px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.card-event{
  margin-left :auto;
  color: #3D61AD;
  cursor: pointer;
  line-height: 0;
}

.card-info{
  display: flex;
  flex: 1 1 auto;
}

.card-info-img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border:1px solid #3D61AD;
  padding: 5px;
  overflow: hidden;
}

.card-info-news{
  padding-left: 10px;
  line-height: 18px;
}

.news-name{
  font-size: 14px;
  font-weight: 400;
  color:#3D61AD;
}

.news-info{
  font-size: 12px;
  color: #7A7A7A;
  margin-right: 10px;
}

.news-info i{
  color: #3D61AD;
  padding-right: 5px;
}

.news-info-rubrique{
  margin-left: auto;
  padding-top: 25px;
}

.news-rubrique{
  background:#D9D9D9;
  border-radius: 5px;
  font-weight: 300;
  color: #3D61AD;
  text-transform: uppercase;
  padding: 4px 10px 4px 10px;
  font-size: 13px;
  white-space: nowrap;
}

.news-stat{
  padding: 1px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}


.search-filter
{
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  padding: 20px;
  margin-top: 2px;
  top: 40px;
  width: 70%;
  z-index: 5;
  border-radius: 5px;
}
.search-filter .searchfiltertitle b
{
  padding-left: 6px;
}
.search-filter input.form-control{
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  padding: 8px;
}
.search-filter select:focus{
  border: none;
  box-shadow:none;
}
.search-filter input,.search-filter select
{
  /* box-shadow: rgb(0 0 0 / 7%) 0px 3px 8px; */
  border:none;
}

.search-filter .btnsend i 
{
  color:#C7B410;
}
.search-filter .btnsend 
{
  background: #fff;
  padding: 10px 17px;
  border-radius: .25rem;
  font-size: 14px;
  border: none;
  color: #C7B410 !important;
  width: initial;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

/**/

.search-filter .btnfermesearch
{
  background-color: #fff;
  border:1px solid #3D61AD;
  border-radius: 5px;
  padding: 6px;
  color:#000;
}
.search-filter .btnsavesearch
{
  background-color: #3D61AD;
  border:1px solid #3D61AD;
  border-radius: 5px;
  padding: 6px;
  color:#fff;
}
.search-filter .btnfrmblock 
{
  text-align: right;
}


/**/

.search-filter .iconselect
{
  position: absolute;
  top: 20px;
  left: 16px;
}
/* .search-filter select
{
  text-indent: 25px;
} */
.title-filter{
  display: flex;
  align-items: center;
}
.title-filter h5{
margin-bottom: 0;
text-indent: 25px;
color: #3D61AD;
}
.search-filter .search
{
  position: relative;
  position: relative;
  display: flex;
  padding: 6px;
  border-radius: 5px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

.search-filter .search i 
{
  position: absolute;
  top: 11px;
  left: 12px;
}

/* .search-filter .search select {
  text-indent: 25px;
} */









/*****/
/** FORMS **/

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: #d6d3d3
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(124, 124, 124)
}

.status-content,.newslettercontent, .toparticlecontent
{
  padding-top: 5px;
  box-shadow: rgb(0 0 0 / 11%) 0px 3px 8px;
  border-radius: 7px;
}

.toparticlecontent .card-info-img{
  width: 35px;
  height: 35px;
}

.newslettercontent .sousnws span
{
  font-size: 12px;
  padding: 3px 22px 0px 2px;

}

.status-content .nav-tabs
{
  box-shadow: 0 4px 2px -2px #b7a7a77d;
}

.status-content .nav-tabs .nav-link.active {
  border-color: transparent;
  background-color: #fff !important;
  color: #3D61AD !important;
  border-bottom: 4px solid #3D61AD !important
}

.status-content .nav-fill .nav-item .nav-link,
.status-content .nav-justified .nav-item .nav-link {
  width: 100%;
  color: #000
}
.status-content .nav-tabs .nav-link {
  border-top-left-radius: 0rem !important;
  border-top-right-radius: 0rem !important
}

.status-content .nav-tabs .nav-link.active {
  border-color: transparent;
  background-color: #60D0FF;
  color: #fff;
  font-weight: 600
}
.status-content .nav-link {
  height: 50px;
  font-size: 10px;
  background-color: #fff
}

.status-content .tab-pane {
  height: 300px
}

.status-content .flight-where-from:after {
  position: absolute;
  content: '23';
  width: 20px;
  height: 20px;
  border-radius: 50%
}

.status-content .scroll-y ,.newslettercontent .scroll-y ,.toparticlecontent .scroll-y{
  overflow-y: scroll;
  overflow-x: hidden;
  height: 300px;
}

.status-content .statustitle,.newslettercontent .nwslettertitle,
.toparticlecontent .articletoptitle
{
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
}

.tab-content .tvcircle span,.tab-content .radiocircle span,.tab-content .newscircle span
{
font-size: 19px;
    font-weight: 600;
}


.tab-content .tvcircle span i
{
   color:#3D61AD;  
}

.tab-content .radiocircle span i
{
  color:#316A48;
}

.tab-content .newscircle span i
{
  color:#50A6E0;
}

.newslettercontent .newsline
{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  margin-bottom: 5px;
  display: flex;
}

.newslettercontent .titlesousline{
  font-size: 14px;
  font-weight: 700;
}

.newslettercontent .newsline .sousnws i ,.newslettercontent .titlesousline i 
{
  font-size: 12px;
  color:#3D61AD;
}

.bg-send-nws
{
  color:#009D00;
  background-color: #CCEBCC;
  border-radius: 25px;
}


.bg-cancel-nws
{
  color:#FF4E4E;
  background-color: #FFDBDB;
  border-radius: 25px;
}

.bg-runing-nws
{
  color:#FF9100;
  background-color: #FFE9CC;
  border-radius: 25px;
}
.newslettercontent .btn-nws 
{
  margin-top: auto;

}
/** tabs Right block Status(1) **/




/* Article selectionner */
.article-select{
  width: 500px;
}

.top-menu-article{
  display: flex;
  padding: 10px;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.articletoptitle{
  font-size: 13px;
  font-weight: 700;
  line-height: 25px;
}

.article-icones{
  margin-left: auto;
}

.article-icones a{
  text-decoration: none;
  margin: 0px 5px;
}

.article-content{
  padding: 10px;
  height: calc(100vh - 45px);
  overflow: auto;
}

.termine-step{
  padding: 10px;
  height: calc(100vh - 60px);
  overflow: auto;
}

.article-content .card-info-img{
  width: 35px;
  height: 35px;
}

.article-content .card-text{
  margin-bottom: 5px;
}

/* End Article selectionner */


/* slide step */
.slidestep{
  width: 500px;
  position: relative;
  height: 100vh;
}

.btn-step{
  position: absolute;
  width: 100%;
  background: #fff;
  padding: 15px;
  bottom: 0;
  box-shadow: rgb(0 0 0 / 16%) 1px 0px 4px;
}

.preveditionstep{
  width: 35%;
  background: #fff;
  color:#9092A1;
  border: 1px solid #ccc;
  font-size: 14px;
}

.lastprevstep{
  width: 25%;
}

.visualisebtn{
  width: 25%;
  background: #303980;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #fff;
}

.visualisebtn:hover{
  background: #283386;
  color: #fff;
}

.savebtn{
  width: 45% !important;
  background: #3D61AD;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #fff;
}

.nexteditionstep{
  width: 60%;
  background: #3D61AD;
  color: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #fff;
}

.nexteditionstep:hover,.savebtn:hover{
  background: #282e5f;
  color: #fff;
}

.form-control{
  box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px ;
  border:1px solid #ccc;
}

.header-slidestep{
  display: flex;
  padding: 10px;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.slidestep-title{
  padding: 10px 5px;
  border-radius: 25px;
  background: #BFBFBF;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 14px;
}

.slidestep-title span{
  line-height: 15px;
}

.active-titleslide{
  background: #3D61AD;
}

.valide-titleslide{
  background: #006A04;
}

.form-input-edition{
  padding: 10px;
  height: calc(100% - 130px);
    overflow: auto;
}

.form-input-edition textarea{
  resize: none;
}

.list-template{
  width: 100%;
  /* height: calc(100vh - 482px);
  overflow: auto; */
  clear: both;
}

.img-template{
  width: 32%;
  height: 170px;
  margin-right: 3px;
  margin-bottom: 5px;
  float: left;
  position: relative;
  border-radius: 10px;
}
.img-template img::after{
    content: '\A';
    position: absolute;
    width: 100%; 
    height:100%;
    top:0; 
    left:0;
    background:rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
}
.form-control:focus, .form-check-input:focus{
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px !important;
}

.img-templte-event{
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  display: flex;
}

.form__radio-button {
  height: 20px;
  width: 20px;
  background: transparent !important;
  border: 2px solid #FFD500;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.form__radio-button:checked{
  background-image: url("../images/check.png") !important;
  background-size:cover !important;
  background-color: transparent !important;
  border-color:#FFD500 !important;
}

.form__radio-button::after {
  font-family: "Font Awesome";
  content: "\f007";
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-100%, -100%);
  background-color: #FFD500 !important;
  opacity: 0;
  transition: opacity 0.2s;
}

.form__radio-input:checked ~ .form__label-radio .form__radio-button::after {
  opacity: 1;
}

.contact-step{
  width: 100%;
  height: calc(100vh - 130px);
  overflow: auto;
  padding: 5px 0px;
}

.contact-bloc{
  display: flex;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}

.contact-bloc-icone{
  font-size: 20px;
  color: #3D61AD;
}

.contact-bloc-info{
  padding-left: 10px;
}

.contact-bloc-name{
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-bloc-check{
  margin-left: auto;
  margin-top: 10px;
}

.contact-bloc-detail span{
  padding:4px 8px;
  border-radius: 15px;
  color: #3D61AD;
  border:1px solid #3D61AD;
  font-size: 12px;
  margin-right: 5px;
}

.resume-step{
  width: 100%;
  height: calc(100vh - 130px);
  overflow: auto;
  padding: 10px 20px;
}

.resume-title{
  color: #3D61AD;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.bloc-resume{
  padding: 10px;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
  font-size: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.bloc-resume span{
  font-weight: 700;
}

.contact-bloc-resume{
  border: none;
}

.temp-img{
  width: 150px;
  height: 170px;
  border-radius: 15px;
  margin: 0 auto;
}

.termine-content{
  text-align: center;
  padding: 50px 0px 30px 0px;
}

.btn-last-etape{
  display: flex;
}

.btn-last{
  width: 33%;
  padding: 10px;
  font-size: 12px;
  margin-right: 5px;
  color: #fff;
}

.btn-last:hover{
  color: #fff;
}

.btn-dashboard{
  background: #3D61AD;
}

.col-card-action{
  border-left: 1px solid #f2e7e7;
}
.col-card-action .padding-action{
  padding: 35px 0;
}
.btn-edit-html{
  background: #006098;
}
.link-content .fa-chevron-right{
  color:#3D61AD;
}
.btn-programmer{
  background: #118200;
}

.btn-cls{
  background: #fff;
  font-size: 12px;
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

/* End slide step */

/* loading step */
.back_loader{
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
}


.prossing {
  padding: 80px 10px 80px 10px;
}

.circle {
  display: inline-block;
  background-color: orange;
  height: 15px;
  width: 15px;
  border-radius: 25px;
}

#container-pros {
  height: 200px;
  margin-top: 121px;
}

#ball-1 {
  -webkit-animation-name: bounce;
  -webkit-animation-delay: 1s;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  background: #25d0f3;
}

#ball-2 {
  -webkit-animation-name: bounce;
  -webkit-animation-delay: 1.1s;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  background: #0066ff;
}

#ball-3 {
  -webkit-animation-name: bounce;
  -webkit-animation-delay: 1.2s;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  background: #a8dc5b;
}

#ball-4 {
  -webkit-animation-name: bounce;
  -webkit-animation-delay: 1.3s;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  background: #ff0808;
}

@-webkit-keyframes bounce {
  0% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(23px);
  }
  60% {
      transform: translateY(-25px);
  }
  80% {
      transform: translateY(0);
  }
}
/* End loading step */



/* css detail newsletter */
.content-detailnews{
  background: #fff;
  border:1px solid #ccc;
  height: auto;
  border-radius: 5px;
  padding: 30px;
}

.title-detailnews{
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.title-detailnews span{
  font-weight: 500;
  margin-left: 10px;
}

.topcontent-detailnews h4{
  font-size: 22px;
  color: #fff;
}

.image-detailnews{
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.image-detailnews::after{
  content:'';
  position:absolute;
  left:0; 
  top:0;
  width:100%; 
  height:100%;
  display:inline-block;
  background: linear-gradient(to bottom , rgba(0,0,0,0.8) -26.48% ,rgba(246,247,249,0));
}

.playvideo{
  position: absolute;
  z-index:99;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  border-radius:50%;
  background:transparent;
}

.playvideo i{
  font-size: 80px;
  color: #fff;
}

.info-detailnews{
  position: absolute;
  top: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  z-index: 5;
}

.titlecat-detailnews{
  display: flex;
}

.bloc-badgenews{
  margin-left: auto;
}

.badge-detailnews{
  background: rgb(217, 217, 217,0.3);
  border-radius: 10px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 10px 4px 10px;
  font-size: 13px;
  white-space: nowrap;
}

.sousinfo-detailnews{
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}

.sousinfo-detailnews span{
  margin-left: 10px;
}

.text-detailnews{
  font-size: 14px;
  margin-top: 15px;
}

.popvideo{
  position: fixed;
  z-index:99;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
}

.popvideo-content{
  width: 60%;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: calc(100vh - 200px);
  z-index: 10;
}

.vid-title{
  width: 100%;
  position: absolute;
  top: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px;
  display: flex;
  z-index: 110;
  
}

.vid-title .option{
  margin-left: auto;
  white-space: nowrap;
}

.vid-title .option a{
  color: #fff;
  margin-right: 10px;
  cursor: pointer;
}
/* End css detail newsletter */


/* Media query css */
@media screen and (max-width: 768px) {
  .topcontent-detailnews h4{
    font-size: 16px;
  }
  .col-card-action .padding-action{
    padding: 0 ;
  }
  .playvideo i{
    font-size: 60px;
  }
  .popvideo-content{
    width: 95%;
  }
  .fichiers-rapport .type-rapport p{
    margin-left: -23%;
  }
  .card-body-info small{
    display: flex;
  }
  .profilecontent .passwordblock{
    margin-top: 60px;
  }
}
@media screen and (max-width : 426px){
  .col-card-action{
    text-align: left !important;
  }
  .card-row {
    padding: 15px;
  }
  .rma-logo-head {
    width: 60%;
}
}
@media screen and (max-width : 376px){

}
@media screen and (max-width: 767px) {
  /* .background-auth-img{
      background-image: none;
      border-left: 10px solid #3D61AD;
      border-right: 10px solid #3D61AD;
      border-top: 10px solid #3D61AD;
  }  */
  .authentification-main{
    width: 90%;
  }
  .zoom-title{
      text-shadow: 2px 2px 1px #3D61AD;
      font-size: 25px;
      margin-top: 0px;
  }
  .form-login{
      width: auto;
      /* margin: 20px 20px 0px 20px; */
  }
  .title-login{
      font-size: 15px;
  }
  .sous-title-login{
      font-size: 10px;
  }

  /* .logo{
      height: 140px;
  } */
  /* .logo img{
      width: 310px;
  } */
  .form-login{
    padding: 0;
  }
  .copy-position{
      background:#3D61AD;
  }
  .playvideo i{
    font-size: 30px;
  }
  .topcontent-detailnews h4{
    font-size: 10px;
  }
  .info-detailnews{
    display: block ;
  }
  .sousinfo-detailnews{
    font-size: 10px;
  }
  .image-detailnews{
    height: 200px;
  }
  .sidebar{
    box-shadow: none;
    background: transparent;
  }
  .home-section{
    width: 100%;
    left: 0;
  }
  .sidebar .logo-details #btn{
    color: #fff;
  }
  .sidebar .nav-list{
    display: none;
  }
  .sidebar.open .nav-list{
    display: block;
  }
  .sidebar.open{
    width: 100% !important;
    background: #fff;
  }
  .sidebar .logo-details{
    background: rgba(0,0,0,0.6);
    height: 40px;
    border-radius: 50%;
  }
  .sidebar.open .logo-details{
    background: transparent;
    height: 60px;
  }

}
@media screen and (max-width: 992px) {
  .file-drop-area{
    width: 100% !important;
  }
  .file-drop-area p{
    margin-left: 0 !important;
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {

}
/* End media query css*/
.loading-title {
  color: #222643;
  margin-top: 30px;
  font-weight: 900;
  text-align: center;
}
/***Profile***/
.profilecontent .profiletitle span 
{
  font-weight: 600;
  padding-left: 6px;
  font-size: 14px;
  color: #3D61AD;
}
.profilecontent .profiletitle
{
  border-radius:5px;
  padding: 18px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-transform:uppercase;
  background-color: #fff;
}


.profilecontent .profilinfo 
{
  display: flex;
  margin-top: 13px;
  border-radius:5px;
  padding: 12px 10px 7px 14px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff;
  align-items: center;
}

.profilecontent .profilinfo img 
{
  border-radius: 10px;
  border:3px solid #d2d3d9;
  margin-top: 5px;
}

.profilecontent .profilinfo .namemail
{
  padding:12px 12px 12px 12px;
  display: inline-grid;
  vertical-align:top;
}

.profilecontent .profilinfo .namemail .name 
{
  font-weight: 600;
  font-size: 14px;
}
.profilecontent .profilinfo .namemail .mail i 
{
  color:#d85467;
}

.profilecontent .profilinfo .namemail .mail
{
  color:#4f647d;
  font-size: 12px;
}
.btnn-rma:hover 
{
  background: #3D61AD;
  color: #fff;
}
.btnn-rma
{
    background: #3D61AD;
    color: #fff;
    border-radius: 7px;
    font-size: 9px;
    width: 185px;
    height: 35px;
    line-height: 4px;
}


.profilecontent .permissionlist
{
  margin-bottom: 10px;
  border-radius:5px;
  padding: 18px 0px 18px 18px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff;
}

.profilecontent .permissionlist .namepermission
{
  font-weight: 600;
  padding-left: 6px;
}

.permissionlist .titlepermission
{
  font-weight: 500;
  font-size: 14px;
}
.permissionlist .rolbadge
{
  margin: 3px;
  display: inline-block;
  padding: .60em .65em;
  font-size: .75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .35rem;
}
.permissionlist .bdg-primary
{
  background-color: #6e92d1;
}
.permissionlist .bdg-grisse
{
  background-color: #cb9ffd;
}
.permissionlist .bdg-rose
{
  background-color: #fd9f9f;
}
.permissionlist .bdg-primaryv0
{
  background-color: #6e81ff;
}
.permissionlist .bdg-info
{
  background-color: #9fd4fd;
}
.permissionlist .bdg-red
{
  background-color: #e08484;
}
.permissionlist .bdg-orange
{
  background-color: #ffbc6e;
}

.permission-icon-green
{
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #cce9cd;
  color: #009105;
  padding: 8px;
  text-align: center;
  cursor: pointer;
}
.permission-icon-red
{
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #ffdcdc;
  padding: 8px;
  text-align: center;
  cursor: pointer;

}
.overflow-split{
  overflow: auto;
  height: 75vh;
}
.btnn-rma span 
{
  padding-left: 7px;
}

.permissionlist .scrollpermission
{
  overflow: auto;
 height: 66px;
}


.profilecontent .passwordblock
{
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  padding: 20px;
  /* margin-top: 14px; */
  top: 263px;
  right:8% ;
  text-align: justify;
  z-index: 5;
}
.profilecontent .passwordblock .titlepass
{
  font-weight: 500;
}

.profilecontent .passwordblock .textpass
{
  font-size: 11px;
  color: #afafaf;
}

.profilecontent .passwordblock .passwordtext
{
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #bbbbbb;
}
.profilecontent .passwordblock .btn-save 
{
  background-color: #3dad8e;
  color:#fff;
}
.profilecontent .passwordblock label 
{
  color:#bbbbbb;
  font-size:14px;
}


.profilecontent .passwordblock .searchico1
{
  top: 109px;
}
.profilecontent .passwordblock .searchico2
{
   top:184px;
}
.profilecontent .passwordblock .searchico3
{
  top:260px;
}

.profilecontent .passwordblock .searchico1,
.profilecontent .passwordblock .searchico2,
.profilecontent .passwordblock .searchico3
{
  cursor: pointer;
  position: absolute;
  right: 29px;
  color: #ccc;
}

.profilecontent .arrowpassword
{
  font-size: 14px;
}
/* Profile */