:root {
    --primary-btn-color: #006552;
    --border-color:rgba(128, 128, 128, 0.41);
    --text-light-color: #F5F5F5FF;
    --info-grey: #9c9c9c;
    --warning-color: #ffa600;
    --red-color: red;
}


@font-face {
    font-family: Geologica;
    src: url("./typo/Geologica/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf");
}



body{
    font-family: Geologica;
    margin: 0;
    padding-bottom: 50px;
}

nav{
    overflow: hidden;
    position: fixed;
     z-index: 1000;
    bottom: 0;
    width: 100%;
    background-color: whitesmoke;
    display: flex;
    border-top: var(--border-color) 1px solid;
}

nav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;

}

/*---progressbar----*/
.timeline {
      position: relative;
      max-width: 420px;
      margin: auto;
      padding-left: 45px;
    }

    .progress-bg {
      position: absolute;
      left: 18px;
      top: 20px;
      bottom: 20px;
      width: 6px;
      background: #d0d5dd;
      border-radius: 10px;
    }

	    .progress-fill {
	      position: absolute;
	      left: 18px;
	      top: 20px;
	      width: 6px;
	      height: 0;
	      background: var(--primary-btn-color);
	      border-radius: 10px;
	      transition: height 0.3s ease;
	    }



.col{
    flex: 1;
}

a{
    text-decoration: none;
    color: inherit;
}

h1,h2,h3,h4,h5{
    font-weight: normal;
}

p{
    font-weight: 400;
}

.stop-card{
    border-radius: 25px;
    border: var(--border-color) solid 1px;
    padding: 10px 30px;
    margin: 30px 10px;
}

.day-card{
    border-radius: 25px;
    border: var(--border-color) solid 1px;
    padding: 15px 30px;
    margin: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-card h2{
    margin: 0;
}

.card-arrow{
    color: var(--info-grey);
    font-size: 42px;
    line-height: 1;
}

.right{
    text-align: right;
}

.isInfo1 h2,
.isInfo1 p {
    margin: 0px 0px;
}

.isInfo1{
    background-color: #e8e8e8;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
}

.change-order-card{
    border-radius: 25px;
    border: var(--border-color) solid 1px;
    padding: 10px 30px;
    margin: 10px 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-text h2,
.card-text p{
    margin: 0;
}

.arrows{
    display: flex;
    flex-direction: column;
}

.arrow{
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.arrow:hover{
    opacity: 0.6;
}

.center{
    text-align: center;
}

.headline{
    background-color: var(--primary-btn-color);
    padding: 10px;
    color: whitesmoke;
}

.breadcrumbs{
    padding: 15px;
    color: gray;
}

.content{
    width: 90%;
    margin: 0 auto;
}

.btn{ margin-right: auto;
    margin-left: auto;
    display: block;
    width: 80%;
    text-align: center;
    background-color: var(--primary-btn-color);
    padding: 8px 0px;
    border-radius: 25px;
    color: var(--text-light-color);
}

.warning{
    background-color: var(--warning-color);
}

.red{
    background-color: var(--red-color);
}

.info{
    color: var(--info-grey);
    font-size: small;
    margin: 0;
}

#map {
    height: 400px;
    width: 100%;
}

.stopImg{
    display: block;
    width: 100%;
    margin: 10px auto;
    border-radius: 10px;
}

.w-80{
    width: 80%;
}

.w-90{
    width: 90%;
}

.mt-3{
    margin-top: 30px;
}

.mb-2{
    margin-bottom: 20px;
}

.m-0 p,
.m-0 h4{
    margin: 5px;
}


/*----------- AdminDashboard -----------*/

.container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.main {
    flex: 2; /* 2/3 */
}

.sidebar {
    flex: 1; /* 1/3 */
}

.preview {
    display: flex;
    flex: 0 0 min(390px, 100%);
    flex-direction: column;
    width: min(390px, 100%);
    max-width: 390px;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .preview {
        flex: none;
        width: 100%;
    }
}

.border{
    border: black 1px solid;
}

.preview-screen {
    display: flex;
    flex-direction: column;
    width: min(390px, 100%);
    height: min(844px, calc(100vh - 170px));
    aspect-ratio: 390 / 844;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 24px;
}

.preview-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.preview-screen nav {
    position: static;
    flex: 0 0 auto;
    width: 100%;
}

.hidden {
    display: none;
}

.error {
    color: red;
    font-size: 0.8rem;
}




/*----------- Debugg -----------*/

.bg-test{
    background-color: blue;
}
