:root {
    --basic:#003476;
    --secondary: #046ec5;
    --success: #00703c;
    --unsuccess: #ca2e2e;
    --basic-text:#212529;
    --secondary-text: #616161;
    /*--Link-default-state: #046ec5;
    --Link-hover-state: #003476;*/
    --Link-default-state: #003476;
    --Link-hover-state: #046ec5;
    --Link-visited-state: #4c2c92;
    --Link-active-state: #212529;
}


*, ::before, ::after {
    box-sizing: border-box;
}

body {
    color: rgba(0, 0, 0, 0.87);
    background-color: #fcfcfc;
    font-size: 1rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    margin: auto;
    
}

h2 {
    margin: 10px;
    font-size: 35px;
    font-weight: lighter;
}

h3 {
    font-size: 1.5rem;
    color:var(--basic-text);
}

p {

    color:var(--basic-text);
    font-size: 18px;
    line-height: 32px;
}

a {
    color : var(--Link-default-state);
    text-decoration: none;
}

a:hover {
    color : var(--Link-hover-state);
}

.two-col {
    display: flex;
    width: 50%;
}


.Layout-root {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    flex-direction: column;
}


.Header-root{
    background-color: var(--basic);
    padding: 0 10px;
}

.Container-root {
    width: 100%;
    display: block;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.Container-maxWidth {
    max-width: 1280px;
}

.Toolbar-root {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    min-height: 100px;
    color: #fff;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Toolbar-root h3 {
    margin: 0 20px;
    color: #fff;
}

.top-asep-logo {
    margin-left: 20px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    border-left: 2px solid white;
}

.Toolbar-root1 {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.asep-alert {
    color: #fff;
    margin-bottom: 1px;
    font-size: 15px;
    font-weight: 200;
    text-align: center;
    line-height: 10px;
    animation-name: ani-alert;
    animation-duration: 1.5s;
}

.asep-alert a {
    color: #fff;
    text-decoration: underline ;
    text-underline-position: under ;
    text-underline-offset: 3px ;
}

.asep-alert a:hover {
    color: var(--Link-hover-state);
}




.Header-Bar {
    width: 100%;
    height: 5px;
    background: linear-gradient(358.5deg,#00aeef .09%,#134a86);
    margin-left: auto;
    margin-right: auto;
}

.height2 {
    height: 1px;
}

.Menu-Bar {
    display: flex;
    flex-direction: row;    
    justify-content: center;
    width: 100%;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    flex-wrap: wrap;

}



.Container  {
    display: flex;
    margin: 0 20px;
    flex-direction: column;
    padding: 10px 0;
    min-height: unset;
}

.ContainerTop {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px;
    
}

.ContainerTop h3 {
    padding: 0px 20px;
}

.ContainerTop h2, .ContainerTop p {
  text-align: center;
}

.ContainerMain {
    display: flex;
    flex-direction: row;
    padding: 0px 40px 10px 40px;
}

@media screen and (max-width: 800px) {
    .ContainerMain {   
      flex-direction: row;
    }
  
}

.ContainerCol1, .ContainerCol2, .ContainerCol3, .ContainerCol11, .ContainerCol22, .ContainerCol33 {
    transition: all 0.5s ease-in-out;
    margin: 60px auto;
    background-color: #fff;
    text-align: center;
}


.ContainerCol11:hover, .ContainerCol22:hover, .ContainerCol33:hover {
  box-shadow: 0 2px 4px -1px #0006,0 4px 5px #0006,0 1px 10px #0006;
  color: white;
  cursor: pointer;
  background-color: #4fbbc11f;
}



.ContainerCol1  {
    width: 40%;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-color: #f1f1f1;
}

.ContainerCol11, .ContainerCol33 {
  width: 40%;
  border: 1px solid #003476;
  border-radius: 15px; 
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/*.ContainerCol11 {
  border: 2px solid #4fbcc1;
}
*/
@media only screen and (max-width: 800px) {
    .ContainerMain {   
        display:flex;
        flex-direction: column;
    }
    .ContainerCol1, .ContainerCol3, .ContainerCol11, .ContainerCol33   {
        width: 75% !important;
    }


    .card {
        min-height:300px;
      }
}

.ContainerCol2 {
    width: 75%;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.ContainerCol3 {
  width: 40%;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    flex-wrap: wrap;
    /*justify-content: space-between; */
  }

  .card-login {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card h3, .help-line h4 {
    font-size: 30px;
    color: var(--basic);
    text-align: left;
    margin: 5px;
    padding: 20px;
    border-bottom: 1px solid #00aeef;
    font-weight: lighter; 
    display: flex;
    justify-content: center ;
  }

.help-line h3 {
    border-bottom: none;
  }
  
  .ggpsimg {
  padding-left: 20px;
  margin-top: 20px;
}



.help-line h4 {
    font-size: 20px;
}

    
  .card h3.prasino  { color:var(--success);} 

  .card h4 {
    font-size: 18px;
    /*color: var(--basic);*/
    text-align: center;
    margin: 5px;
    font-weight: 400;
  }

.card h3 img {
  border: 1px solid #4fbcc1;
  padding: 20px;
  border-radius: 50%;
}

/*--------------------------------asep button START -------------------------*/


.asepbtn2 {
    /*width:100%;*/
    min-width:250px;
    background-color:var(--Link-default-state);
    /*background: linear-gradient(0deg, rgba(24,68,101,1) 30%, rgba(58,113,154,1) 100%);*/
    padding: 15px 25px;
    margin: 30px auto;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid black;
    border-color: var(--Link-default-state);;
    color: #fff;
    border-radius:6px;
  }
  
  .asepbtn2.green {
   /* background: linear-gradient(0deg, rgba(52,116,71,1) 30%, rgba(96,159,115,1) 100%);*/
    background: #fff;
    border: 1px solid var(--success);
    color: var(--success);
    float: inherit;
  }
  
  .asepbtn2:before {
  transition: all .6s cubic-bezier(.19,1,.22,1);
  transform: skewX(20deg);
  }
  
  .asepbtn2:hover {
    background: var(--Link-hover-state);
    color: white;
  }
  
  .asepbtn2.green:hover  {
    background: var(--success);
    color: white;
    border-color: var(--success);
  }
    
  
  .usefull-notes {
      -webkit-transition: color ease 0.3s;
      transition: color ease 0.3s;
      text-align: center;
      font-size: 16px;
      line-height: 17px;
      font-weight: normal;
      padding-top: 60px;
  }
  
  
  .asepbtn2.green:hover  .usefull-notes {
      visibility: visible;
        color: rgba(0,0,0,1);
  }
  
  /*--------------------------------asep button END -------------------------*/
  @media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%; }
  }
  @media only screen and (min-width: 1000px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
  }

  .login-form {
    min-height: 345px;;
    width: 310px;
    margin: 10px auto;
    position: relative;
    background: #f3f3f3;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 366px;
    background: #f9f9f9;
    border: 1px solid #003476 !important;
    border-radius: 0px;
  }

  .login-form2 {
    margin: 10px auto;
    background: #f3f3f3;
    border: 1px solid #fff;
    border-radius: 0px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #003476 !important;
    padding: 20px 0px;
  }


  .login-form .header {
    padding: 10px 30px 30px 30px;
  }

  .login-form .content {
    padding: 0 30px 25px 30px;
  }

  .login-form .content .input {
    width: 250px;
    padding: 15px 25px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #9d9e9e;
    text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
  }

  .login-form .content .password, .login-form .content .pass-icon {
    margin-top: 25px;
  }


  a.forget{
    text-decoration:none;
    font-size:16px;
    color:var(--Link-default-state);
    border-bottom:1px solid #CFD5DA;
    font-weight:bold;
  }
  
  a.forget:hover{
      color:var(--Link-hover-state);
      letter-spacing:0.2px;
  }


  .needhelp {
    text-align: right;
    margin-top: -35px;
  }

@media screen and (max-width: 800px) {

    .ContainerCol  {
        width: 80%;
        margin: 20px auto;
    }
  
}

.ContainerCol:hover  {
    box-shadow: 0 0 30px 0 rgba(0,0,0,.15);
    border-top: 10px solid var(--Link-hover-state);
}

.ContainerCol i {
    color: var(--secondary-text);
    font-size: 2em;
}

.ContainerCol:hover i {
    color: var(--Link-hover-state);
}

.ContainerCol .Button i {
    color: #fff;
    font-size: 1.01rem;
}


.tooltip {
    padding-bottom: 40px;
}

.Button {
    display: inline-block;
    vertical-align: middle;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: var(--Link-default-state);
    border-radius: 6px;
    text-transform: none;
    padding: 15px 25px;
    font-size: 1.01rem;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);    
    min-width: 64px;
    transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.02857em;

}



.Button:visited {
    color: #fff;
}

.Button:hover {
    color: #fff;
    background: var(--Link-hover-state);
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);    
}


.Footer {
    display: flex;
    flex-direction: row;
    background-color: #f2f2f2;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 20px;
    margin-right: auto;
    margin-left: auto;
}

.Footer a {
    padding-right:20px;
}

.FooterLeft {
    flex: 66.66%;
    width:66.66%;
    font-size:0.85em;
}

.FooterRight {
    flex: 33.33%;
    width:33.33%
}


.Footer p {
    color: var(--secondary-text);
    font-size: 12px;
    padding-bottom: 48px;
    margin-bottom: 0;
}

.alert {
	display: none;
    padding: 10px;
    background-color: var(--secondary);
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    
  }
  
 .alert:before {
    content: 'ΞΞ΄Ο ΞΈΞ± ΞΌΟΞ΅ΞΉ ΟΞ»Ξ·ΟΞΏΟΞΏΟΞΉΞ±ΞΊΟ ΟΞ΅ΟΞΉΞ΅ΟΟΞΌΞ΅Ξ½ΞΏ Ξ±Ξ½ ΟΟΞ¬ΟΟΞ΅ΞΉ Ξ±Ξ½Ξ¬Ξ³ΞΊΞ· ΟΞ·ΞΌΞ±Ξ½ΟΞΉΞΊΞ�Ο Ξ΅Ξ½Ξ·ΞΌΞ­ΟΟΟΞ·Ο. (Ξ΅ΞΌΟΞ±Ξ½Ξ―ΞΆΞ΅ΟΞ±ΞΉ Ξ±Ξ½ ΞΈΞ­Ξ»ΞΏΟΞΌΞ΅)';
  }
  
  
 .closebtn, .closebtn-hlp  {
    margin-left: 15px;
    color: var(--Link-default-state);
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
 .closebtn:hover {
    color: white;
  }

  .closebtn-hlp  {
    display: flex;
    justify-content: flex-end;
    font-size: 2.5em;
    padding: 10px;

 }

  .closebtn-hlp:hover {
    color: var(--Link-hover-state);
  }


  /*--------------------------------helpdesk icons START -------------------------*/


section.feature-boxes{

    margin-bottom: 0px;
}

div.aligner{
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.aligner a{
    text-decoration: none;
    display: contents;
}


div.container{
    display : block;
    height : auto;
    border-radius : 4px;
    margin : auto;
}


.alligner .container {
	min-height: auto;	
}


div.selection{
    width : 100%;
    border-radius : 4px;
    height : calc(100% - 15px);
    padding-top: 15px;
    -webkit-transition:  padding-top linear 0.3s;
    transition: padding-top linear 0.3s;  
}

div.container:hover div.selection{
    padding-top : 5px;
}


div.box {
    box-sizing: unset;
    display : flex;
    position : relative; 
    padding:10px;
    margin : auto;
    margin-top : 0;
    margin-bottom : 20px;
    width : 240px;
    height : 100px;
    border-radius : 5%;
    box-shadow: 0 15px 32px -14px rgba(0,0,0,.4);
    -webkit-transition:  margin-bottom linear 0.3s , background-color linear 0.3s , color linear 0.3s;
    transition:  margin-bottom linear 0.3s , background-color linear 0.3s , color linear 0.3s;
    /* text */
    color : var(--Link-default-state);
    text-align : center;
    font-size : 17px;
    line-height : 18px;

}




div.container:hover div.box{
    background-color : #fff;
    color : var(--Link-hover-state);
    margin-bottom : 30px
}

/* this just plays the role of an before layer shadow */
div.box::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-box-shadow: 0px 0px 9px  rgba(0,0,0,0.9);
    -ms-box-shadow: 0 0 9px  rgba(0,0,0,0.9);
    -moz-box-shadow: 0 0 9px  rgba(0,0,0,0.9);
    -o-box-shadow: 0 0 9px  rgba(0,0,0,0.9);
    box-shadow: 0 0 9px  rgba(0,0,0,0.9);
    opacity: .22;
    -webkit-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
/* the triangle for the animation when hovering */
div.box::after{
                opacity: 0;
                content: '';
    position: absolute;
    transform: rotate(-90deg);
    top: calc(50% - 8.5px);
    left: calc(50% - 8.5px);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-width: 0 8.5px 13px 8.5px;
                border-bottom-color: transparent;
                border-top: 0;
                margin-left: 0px;
                margin-top: -10px;
    -webkit-transition: opacity .5s ease;
    -ms-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
    animation-fill-mode : forwards;
    -webkit-animation: unorbit 0.3s ease 0s 1 normal forwards;
    -moz-animation: unorbit 0.3s ease 0s 1 normal forwards;
    -o-animation: unorbit 0.3s ease 0s 1 normal forwards;
    animation: unorbit 0.3s ease 0s 1 normal forwards;
}

div.container:hover div.box::after{
                opacity : 1;
    animation-fill-mode : forwards;
    -webkit-animation: orbit 0.3s ease 0s 1 normal forwards;
    -moz-animation: orbit 0.3s ease 0s 1 normal forwards;
    -o-animation: orbit 0.3s ease 0s 1 normal forwards;
    animation: orbit 0.3s ease 0s 1 normal forwards;
}


div.box-content{

    width: -moz-available;
    width: -webkit-fill-available;
    -webkit-transition: padding linear 0.3s;
    transition: padding linear 0.3s;
}


div.box-content em {
	font-size:40px;
    padding:10px;
}



div.box-content p {
	padding:10px;
    line-height:15px;
    font-size: 15px;
margin: 0 0 16px;
}



div.context{
    display: table;
    position : relative;
    margin : auto;
    width : 640px;
    height : 20px;
    border-radius : 4px;
    /* transition settings */
    -webkit-transition:  color ease 0.3s;
    transition: color ease 0.3s; 
    /* text */
    text-align : center;
    color: rgba(0,0,0,.54);
    font-size : 15px;
    line-height : 17px;
    visibility: hidden;
}


div.context.login{
    width : 380px;
    line-height:22px;
    opacity: 0;
}

div.context.login p{
    line-height:18px;
    margin:8px;
    text-align:left;
}

div.context.login a { color:#3A719A; }


div.container:hover div.context.login{
  opacity: 1;
 }


div.container:hover div.context{
      visibility: visible;

}

div.container:hover .box.tesera em{
      font-size:28px;
      
}


/*--------------- KEY FRAMES --------------------*/
@keyframes orbit {
                from {   transform: rotate(0deg) translateX(60px) rotate(-90deg); }
                to   {  transform: rotate(90deg) translateX(60px) rotate(-90deg); }
}

@keyframes unorbit {
                from {   transform: rotate(90deg) translateX(60px) rotate(-90deg); }
                to   {  transform: rotate(0deg) translateX(60px) rotate(-90deg); }
}
 

.help-line {

     text-align: left;
  }



  /*--------------------------------helpdesk icons END -------------------------*/

  /*--------------------------------asep scroll to top button -------------------------*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 26px;
    border: none;
    outline: none;
    background-color: var(--Link-default-state);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: var(--Link-hover-state);
  }
  
/*--------------------------------asep Modal ---------- */
.asepmodal, .asepmodal2 {
    display: block; /* Show */
    /*display: none; 	/* Hide */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .asepmodal2 {
    display: block; /* Hidden by default */
    padding-left: 20%; /* Full width */
    padding-right: 20%; /* Full height */
  }
  
  /* Modal Content */
  .asepmodal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close, .close2 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus,
  .close2:hover,
  .close2:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
 