/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Custom properties */
:root{
    --light-color: #fff;
    --light-color-alt: #afb6cd;/*afb6cd*/
    --primary-background-color: #131417;
    --secondary-background-color: #252830;
    --hover-light-color: var(--light-color);
    --hover-dark-color: var(--primary-background-color);
    --gradient-color: linear-gradient(
        115deg,#008a55,#fad648,#a767e5,#12bcfe,#44ce7b);
    --transparent-light-color: rgba(255,255,255,.05);
    --transparent-dark-color: rgba(0,0,0,.75);
    --font-family: 'Poppins', sans-serif;
    --font-size-xsm: 1.2rem;
    --font-size-sm: 1.6rem;
    --font-size-md: 2.4rem;
    --font-size-lg: 3rem;
    --font-size-xl: 4rem;
    --gap: 2rem;
    --margin-sm: 2rem;
    --margin-md: 3rem;
    --item-min-height-sm: 15rem;
    --item-min-height-md: 30rem;
}

/* Base styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;

  }
.loader {
    display: none; 

  }
  
body{
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--light-color-alt);
    background-color: var(--primary-background-color);
    letter-spacing: 1px;
    transition: background-color .25s,color .25s;
}

a{
    color: inherit;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #008a55;
    text-decoration: underline;
}

ul{
    list-style: none;
}

img{
    max-width: 100%;
}

i{
    font-size: var(--font-size-md);
}


/* Language Butten */
.selected-lang{
    cursor: pointer;
    display: flex;
    justify-content: space-between;;
    line-height: 2;
    width: 100px;
}
.lang-div  a{
    text-decoration: none;
    color: var(--light-color-alt);
    font-weight: 600; 
  }
.lang-div  a:hover{
    color: var(--light-color);
  }
  /* End Language Butten */

  /* parallax */

.parallax {
    /* The image used */
    background-image: url("index.jpg");
    /* Set a specific height */
    min-height: 300px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Line */
.line{
    background-color: #777777;
    display: inline-block;
    height: 2px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
}


/* Contact */  
input,
button {
    font: inherit;
    color: inherit;
    border: none;
    background-color: transparent;
}

.wrapper_contact{
    width: 100%;
    background: #fff;
    border-radius: 5px;

    box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}
.wrapper_contact header{
    font-size: 22px;
    font-weight: 600;
    padding: 10px 10px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.wrapper_contact form{
    margin: 35px 20px;
}
.wrapper_contact form.disabled{
    pointer-events: none;
    opacity: 0.7;
}
form .dbl-field{
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
}
.dbl-field .field{
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
}

.dbl-field .field-withoutborder{
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
}
.dbl-field .field-radio{
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 );
    padding-left: 20px;
}

.dbl-field .lfield{
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
}
.dbl-field .flabel{
    padding-top:10px;
}
.dbl-field .fHlabel{
	width:100%;
   text-align:center;
}
.dbl-field .Hfield{
	height: 30px;
    display: flex;
    position: relative;
    width: calc(100% / 1 - 13px);
}

.dbl-field .field_cat{
    height: 50px;
    display: flex;
    position: relative;
    width: 100%;
}
.wrapper_contact form i{
    position: absolute;
    top: 50%;
    left: 18px;
    color: #ccc;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
}
table, th, td {
  border:1px solid black;
}

form .field .input-b{
	width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
	font-weight: bold;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form .field input,
form .field_cat input,
form .message textarea{
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form .field-withoutborder input{
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
form .field-radio input{
    width: 20px;
    height: 20px;
    font-size: 4px;

}
form .field-radio label{
	padding-right:50px;
}

.field input::placeholder,
.field_cat input::placeholder,
.message textarea::placeholder{
    color: #afb6cd;
}

.field input:focus,
.field_cat input:focus,
.message textarea:focus{
    padding-left: 47px;
    border: 2px solid #008a55;
    color: #000;
}

.field input:focus ~ i,
.field_cat input:focus ~ i,
.message textarea:focus ~ i{
    color: #0D6EFD;
}
form .message{
    position: relative;
}
form .message i{
    top: 30px;
    font-size: 20px;
}
form .message textarea{
    min-height: 130px;
    max-height: 230px;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
    width: 0px;
}
.message textarea:focus{
    padding-top: 14px;
}
form .button-area{
    margin: 25px 0;
    display: flex;
    align-items: center;
}
.button-area button{
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #008a55;
    transition: background 0.3s ease;
    margin-bottom: 10px;
}
.button-area button:hover{
    background: #008a55;
}
.button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
}

/* scroll to Top */
.scrollToTop {
    bottom: 60px;
    border-radius: 4px;
    display: none;
    font-size: 32px;
    line-height: 45px;
    font-weight: bold;
    height: 40px;
    padding-top:8px;
    position: fixed;
    right: 40px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    z-index: 999;
    color: #fff;    
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #048855;
}
  
.scrollToTop:hover,
.scrollToTop:focus{
    background-color: #fff;
    text-decoration: none;
    outline: none;
    color: #008a55;
    border: 1px solid #008a55; 
}

/* Label Modal */
.bg-modal{
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.7);
    position: fixed;
    top:0;
    display: flex;
    justify-content:center;
    align-items: center;
    display: none;
    overflow:auto;
    overflow-y: auto;
     z-index: 9999;
}
.er-modal{
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.7);
    position: fixed;
    top:0;
    display: flex;
    justify-content:center;
    align-items: center;
    display: none;
    overflow:auto;
    overflow-y: auto;
    z-index: 9999;
}
.modal-content{
    background-color:#f4f4f4;
    margin:20% auto;
    padding:20px;
    width:40%;
    border-radius: 0px;
    position:relative;
    box-shadow:0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
}
.modal-header h2{
    margin:0;
}
.modal-header{
    background:#008a55;
    padding:15px;
    color:#fff;
    position:relative;
}
.modal-body{
    padding:10px 20px;
    color:#000;
}
.closeBtn{
    position:absolute;
    top:0;
    right:14px;
    font-size:36px;
    transform:rotate(45deg);
    cursor:pointer;
    color:#fff;
}

.er-closeBtn{
    position:absolute;
    top:0;
    right:14px;
    font-size:36px;
    transform:rotate(45deg);
    cursor:pointer;
    color:#fff;
}
.text-center-send{
    text-align:center;
}

.support_send {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    padding: 5px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    margin-top: 25px;
}
      
.support_send span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
      
.support_send span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
      
.support_send:hover span {
    padding-right: 25px;
}
      
.support_send:hover span:after {
    opacity: 1;
    right: 0;
}

/* Search*/
.input-search{
    border: 3px solid #ccc;
    border-radius: 4px;
    transition: 0.5s;
    outline: none;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    text-align: left;
    height:40px;
    padding: 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
.container-search{
    border-radius: 4px;
    transition: 0.5s;
    outline: none;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top:3px solid #008a55
}
.container-bodyinfo{
    transition: 0.5s;
    outline: none;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
} 
/*input[type=text]:focus {
 border: 3px solid rgb(157, 223, 157);
}*/

/* Theme color change */
body.light-theme{
    --light-color: #3d3d3d;
    --light-color-alt: rgba(0,0,0,.6);
    --primary-background-color: #fff; /*rgb(188, 252, 212);*/
    --secondary-background-color: #f1f1f1;
    --hover-light-color: #fff;
    --transparent-dark-color: var(--secondary-background-color);
    --transparent-light-color: rgba(0,0,0,.1);
}

/* Reusable classes */
.container{
    max-width: 160rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.place-items-center{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section:not(.featured-articles){
    padding-block: 5rem;
}

.d-grid{
    display: grid;
}

/* Header */
.header{
    background-color: var(--secondary-background-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar{   
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.5rem;
}

.logo{   
   width: 75%; 
}

.menu{
    position: absolute;
    top: 8.5rem;
    right: 1.5rem;
    width: 23rem;
    padding: 1.5rem;
    background-color:var(--secondary-background-color);
    opacity: 0;
    transform: scale(0);
    transition: opacity .25s ease-in;
}
.quicksupport {
    color: #008a55;
    display: block;
    float: right;
  }
  .quicksupportlink {
    color: #008a55;
  }
  
  .quicksupport>a:hover,
  .quicksupport>a:focus {
    color: #41b488;
  } 
.list{ 
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.box{
	width: 80%;
    margin-left: 40px;
	height: 30px;
	border:3px solid  #ccc;
	border-radius: 20px;
	display: flex;
	align-items: center;    
	padding: 15px;
}

.box > i {
	font-size: 16px;
	color: #777;
}

.box > input{
	flex: 1;
	height: 30px;
	border: none;
	outline: none;
	font-size: 14px;
	padding-left: 5px;
    width: 100%;
}



.menu > .list{
    flex-direction: column;
}
a.list-link:hover, a.list-link:active span{
    text-decoration: overline;
    text-decoration-color: #008a55;
    display:inline-block;
    padding-bottom:5px;
}



.list > li > a::before {
    background-color: transparent;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;  
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 0;
  }

.list-link.current{
    text-decoration: overline;
    text-decoration-color: #008a55;
    display:inline-block;
    padding-bottom:5px;
    color: var(--light-color);
}

.close-menu-icon{
    display: none;
}

.btn{
    cursor: pointer;
}


.list-link:hover,
.btn:hover,
.btn:hover span{
    color: var(--light-color);
}

.moon-icon{
    display: none;
}

.light-theme .sun-icon{
    display: none;
}

.light-theme .moon-icon{
    display: block;
}
.light-theme .logo{
    content: url("logo.png")
}
/* Header JavaScript Styles */
.header.activated{
    box-shadow: 0 1px .5rem var(--transparent-light-color); 
}

.menu.activated{
    box-shadow: 1px 1px 1rem var(--transparent-light-color);
    opacity: 1;
    transform: scale(1);
}

.menu-toggle-icon.activated .open-menu-icon{
    display: none;
}

.menu-toggle-icon.activated .close-menu-icon{
    display: block;
}

/* article */

.article{
    position: relative;
    min-height: var(--item-min-height-md);
}

.article-image{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s;
}

.article-category{
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    background-color:var(--primary-background-color);
    font-size: 1rem;
    color: var(--light-color);
    text-transform: uppercase;
    z-index: 10;
}

.article-data-container{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2rem 1.5rem;
    background-color: var(--transparent-dark-color);
    z-index: 10;
    transition: background-color .5s;
}

.article-data{
    display: flex;
    align-items: center;
    gap: var(--gap);
    font-size: var(--font-size-xsm);
    margin-bottom: 1rem;
}

.article-data-spacer{
    width: .5rem;
    height: .5rem;
    background-color: var(--light-color-alt);
    transform: rotate(45deg);
}

.title{
    color: var(--light-color);
}

.article-title{
    font-size: var(--font-size-md);
}

/* Sidebar */
.sidebar{
    background-color: var(--secondary-background-color);
    padding: 2.5rem;
}



/* Quick read */
.section-title{
    position: relative;
    font-size: var(--font-size-md);
    margin-bottom: 6rem;
}

.section-title::after{
    content: attr(data-name);
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    opacity: .1;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.article.swiper-slide{
    height: 40rem;
}


/* Older posts */
.older-posts-grid-wrapper{
    gap: var(--gap);
}

.older-posts-article-image-wrapper,
.older-posts .article{
    min-height: var(--item-min-height-sm);
}

.older-posts .article{
    background-color: var(--secondary-background-color);
}

.older-posts-article-image-wrapper{
    position: relative;
}

.older-posts-grid-wrapper .article-data-container{
    position: static;
    background-color: transparent;
}

.older-posts-grid-wrapper .article-title{
    margin-bottom: var(--margin-sm);
}

.see-more-container{
    padding-top: var(--margin-md);
}

.see-more-btn{
    text-transform: uppercase;
}

.see-more-btn:hover{
    color: var(--light-color);
}

.see-more-btn i{
    transition: transform .25s;
}

.see-more-btn:hover i{
    transform: translateX(.5rem);
}


/* inmain */
.inmain {
    position: relative;
    z-index: 2;
    margin-bottom: 150px;
    background-color:var(--primary-background-color);
  }
/* Footer */
.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 195px;  
    padding-left: 0px;
    background-color: var(--secondary-background-color);
}

.footer-container{
    gap: var(--gap);
}
.footer-menu{
	display: flex;
    flex-direction: column;
    order: 1;
    font-size: 11px;
    padding-top: 10px;
    align-items: center;
}
.footer-menu a{
    text-decoration: none;
    color: var(--light-color-alt);
}
.footer-menu a:hover {
    color: var(--light-color);
}

.footer-menu li {
    display: inline-block;
    padding: 0 5px;
    position: relative;
    line-height: 1;
    border-right: 1px solid var(--light-color-alt);
    
}
.company-data{
    display: flex;
    flex-direction: column;
    order: 1;
    font-size: 11px;
}
.company-data a{
    color: inherit;
    text-decoration: none;
}
.company-description{
    margin-block: var(--margin-sm);
    max-width: 75%;
}

.social-media{
    margin-bottom: var(--margin-md);
}

.copyright-notice{
    opacity: .8;
}

.footer-list{
    flex-direction: column;
    align-items: flex-start;
}

.footer-title{
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    margin-bottom: var(--margin-sm);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 1rem;
}
  
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
::-webkit-scrollbar-thumb {
    background: #3f4254;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #2e303b;
}
  
.switch {
    --width: 60px;
    --height: calc(var(--width) / 2.25);
    position: relative;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: var(--height);
    cursor: pointer;
    
  }
  
  .switch input { 
    display: none;
  }
  
  .slider {
    position: absolute;
      top: 0;
      left: 0px;
      width: 100%;
      height: 100%;
      border-radius: var(--height);
      background-color: #ccc;
      transition: all 0.4s ease-in-out;
  }
  
  .slider:before {
    content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: calc(var(--height));
      height: calc(var(--height));
      border-radius: calc(var(--height) / 2);
      background-color: #fff;
      box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease-in-out;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(calc(var(--width) - var(--height)));
  }
  .switch .labels {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-family: sans-serif;
    transition: all 0.4s ease-in-out;
  }

  .switch .labels::after {
    content: attr(data-off);
    position: absolute;
    right: 5px;
    color: #4d4d4d;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
  }

  .switch .labels::before {
    content: attr(data-on);
    position: absolute;
    left: 5px;
    color: #ffffff;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease-in-out;
  }

  .switch input:checked~.labels::after {
    opacity: 0;
  }

  .switch input:checked~.labels::before {
    opacity: 1;
  }


@media screen and (min-width: 700px) {

    .box{
        height: 30px;
        border-radius: 25px;
        padding: 17px;
    }
    
    .box > i {
        font-size: 18px;
    }
    
    .box > input{
        height: 35px;
        font-size: 16px;
        padding-left: 7px;
    }
    
    .footer .col-xs-12 {
        width: 100%;
        padding-top: 20px;
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .company-data{
        order: 0;
        font-size: 12px;
    }

    .author{
        grid-template-columns: 25rem 1fr;
    }
}

@media screen and (min-width: 768px) {
    .older-posts .article{
        grid-template-columns: 25rem 1fr;
        
    }
    .older-posts-grid-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
    .older-posts-article-image-wrapper{
        height: auto;
    }
}

@media screen and (min-width: 1024px) {
    .menu{
        position: static;
        width: initial;
        padding: initial;
        background-color: transparent;
        opacity: 1;
        transform: scale(1);
    }

    .menu > .list{
        flex-direction: row;
    }
    .screen-lg-hidden{
        display: none;
    }
    .screen-sm-hidden{
        display: block;
    }
    @keyframes animate_border{
        to{
            transform:translateX(-50%)
        }
    }

    .footer-container{
        grid-template-columns: repeat(5, 1fr);
    }

    .company-data{
        grid-column: span 4;
        font-size: 16px;
    }
    .footer-menu{
        grid-column: span 4;
        font-size: 16px;
    }

    .company-description{
        max-width: 85%;
    }

    .copyright-notice{
        margin-top: auto;
    }
}

@media screen and (min-width: 1200px) {
    .older-posts-grid-wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
    .box{
        height: 30px;
        border-radius: 40px;
        padding: 20px;
        width: 100%;
        margin-left: 0px;
    }
    
    .box > i {
        font-size: 20px;
    }
    
    .box > input{
        height: 40px;
        font-size: 18px;
        padding-left: 10px;
    }
}
@media screen and (min-width: 1500px) {
    .footer .col-lg-4{
        width: 50%;
        padding-top: 10px;
    }
    .featured-article{
        grid-column: 3/-1;
    }
    
    .featured-article-1{
        grid-column: 1/3;
        grid-row: 2/-1;
    }

}


/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
    .modal-content{
        margin:5% auto;
        padding:5px;
        width:90%;
        border-radius: 2px;
        max-height: 80vh;
        overflow-y: auto;
    }
    .modal-header{
        padding:5px;
        font-size:13px;
    }
    .modal-body{
        padding:10px 5px;
        font-size:15px
    }
		.dbl-field .fHlabel{
   height: 100%;
}

.dbl-field .flabel{
	height: 100%;
}
.dbl-field .Hfield{
	height: 100%;
}
    .closeBtn{
        right:4px;
        font-size:32px;
        bottom: 2px;
    }

    .er-closeBtn{
        right:4px;
        font-size:32px;
        bottom: 2px;
    }
    .wrapper_contact{
        height: 80vh;
        overflow-y: auto;
    }
    .wrapper_contact header{
        text-align: center;
    }
    .wrapper_contact form{
        margin: 35px 20px;
    }
    form .dbl-field {
        flex-direction: column;
        margin-bottom: 0px;
    }
    form .dbl-field .field {
        width: 100%;
        height: 45px;
        margin-bottom: 10px;
    }
	form .dbl-field .field-radio {
        width: 100%;
        height: 45px;
        margin-bottom: 10px;
    }
   form .dbl-field .field-withoutborder {
        width: 100%;
        height: 45px;
        margin-bottom: 10px;
    }
form .dbl-field .lfield {
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
    }
    form .dbl-field .field_cat{
        margin-bottom: 10px;
    }
    form .message textarea{
        resize: none;
    }
    form .button-area{
        margin-top: 20px;
        flex-direction: column;
    }
    .button-area button{
        width: 100%;
        padding: 11px 0;
        font-size: 16px;
    }
    .button-area span{
        margin: 20px 0 0;
        text-align: center;
    }
    .scrollToTop {
        bottom: 20px;
        border-radius: 1px;
        font-size: 16px;
        line-height: 20px;
        height: 25px;
        right: 25px;
        width: 25px; 
        padding-top:1px; 
    }
}