#main {
    padding: 16px;
    display: flex;
}

* [contenteditable=true] {
    border: 1px dashed var(--grey700);
    outline: none;
    margin-top: 2px;
    padding: 8px;
}

    * [contenteditable=true]:focus-within {
        border: 1px solid var(--grey700);
    }

.overlay.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    height: calc(100vh + 65px);
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
}

#navigationbar {
    display: grid;
    height: calc(100vh - 65px);
    width: auto;
    padding: 16px;
    box-shadow: 0px 108px 168px rgba(2, 3, 3, 0.03), 0px 44px 200px rgba(2, 3, 3, 0.02), 0px 48px 64px rgba(2, 3, 3, 0.04);
    border-radius: 8px;
    overflow: hidden;
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    font-size: var(--fontsize-14);
    cursor: pointer;
    position: fixed;
}

/*

    #navigationbar:hover {
        transition: width 0.5s;
        -webkit-transition: width 0.5s;
        width: 160px;
        justify-content: left;
    }

        #navigationbar:hover ul li a span {
            opacity: 1;
            -webkit-transition: opacity 0.5s linear;
        }
       

#menu_wrapper ul li a span {
    float: left;
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
}

#navigationbar:hover #menu_wrapper ul li a i {
    background: rgba(67, 233, 74, 0.0);
    color: var(--petroleumdark) !important;
    float: left;
}
 */

#navigation_avatar {
    align-self: flex-end;
}

#menu_wrapper ul li {
    margin-bottom: 32px;
    width: 100%;
    transition: 0.3s;
}

    /*
    #menu_wrapper ul li:hover {
        background: var(--neutralgrey);
        padding-right: 20px;
        border-radius: 4px;
        transition: 0.3s;
    }
*/
    #menu_wrapper ul li a {
        color: var(--petroleumdark);
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        #menu_wrapper ul li a i {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            color: var(--petroleumdark);
        }

#customerslidein.slideinwrapper.active {
    z-index: 20 !important;
    width: 50vw;
}

.slideinwrapper.active {
    opacity: 1;
    display: block;
    -webkit-animation: slideIn 0.3s forwards;
    -moz-animation: slideIn 0.3s forwards;
    animation: slideIn 0.3s forwards;
    z-index: 999999;
}

.slideinwrapper {
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.3s;
    width: 50vw;
    background: var(--bodywhite);
    padding: 48px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    height: calc(100vh - 95px);
    z-index: 2;
    -webkit-animation: slideOut 0.3s forwards;
    -moz-animation: slideOut 0.3s forwards;
    animation: slideOut 0.3s forwards;
}

.slidein_inner_wrapper {
    overflow-y: scroll;
    height: 100%;
}

.pagetitle {
    margin-bottom: 48px;
}

.deploystep_1, .deploystep_2, .deploystep_3, .deploystep_4, .deploystep_5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 12px;
}

.inform_headline {
    margin-bottom: 24px;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 8px;
    color: var(--petroleumdark);
    font-size: var(--fontsize-16);
    font-weight: 500;
}

.overview_standard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}


.overview_top_standard {
    margin: 120px 0 0 0;
}

.tilbuds_header {
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 3fr 6fr 3fr;
    grid-column-gap: 12px;
    align-items: center;
}

.tilbudslist_header {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1.5fr 4.5fr 1.5fr 1.5fr 2fr 0.5fr;
    grid-template-rows: 1fr;
    grid-column-gap: 12px;
    font-size: var(--fontsize-14);
    padding: 3px 24px;
    margin-bottom: 12px;
    color: var(--grey700);
}

.bottom_form_offer {
    margin-top: 48px;
    float: right;
}

.sumitbtn {
    margin-right: 32px;
}

small {
    font-size: 11px;
}

.dot_menu {
    background: var(--white);
    border: 1px solid var(--inputborder);
    border-radius: 4px;
    line-height: 18px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    transition: 0.3s;
    width: 155px;
    z-index: 2;
}

.w200 {
    width: 200px !important;
}

.dot_menu ul li {
    padding: 10px 16px;
    border-bottom: 1px solid var(--inputborder);
    font-weight: 600;
}

    .dot_menu ul li:hover {
        background: var(--greydefault);
        border-radius: 4px;
        transition: 0.3s;
    }

.dots_btn:hover .dot_menu {
    opacity: 1;
    z-index: 9;
    top: 44px;
    display: block;
    transition: 0.3s;
}

.dot_menu ul li a {
    font-size: var(--fontsize-14);
    color: var(--petroleumdark);
    text-decoration: none !important;
}

#menu_wrapper {
    align-self: end;
}

.scriptbullet_on {
    background: var(--primary);
}

.scriptbullet_off {
    background: var(--red);
}

.no-items {
    font-size: var(--fontsize-16);
    text-align: center;
    margin-top: 55px;
}

.offerbullet_on, .offerbullet_off, .offerbullet_draft, .offerbullet_pending {
    height: 12px;
    width: 12px;
    border-radius: 2em;
    position: relative;
}

.modal-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--color-blue-900-05);
}


.modal-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 11;
    display: grid;
    justify-content: center;
    align-content: center;
}

.modal {
    background: var(--white);
    min-height: 10vh;
    min-width: 10vw;
    padding: 64px 48px 0 48px;
    position: relative;
    border-radius: 8px;
}

.modelclose {
    position: absolute;
    top: 16px;
    right: 16px;
}

.modaltitle {
    margin-bottom: 24px;
}

.modalfirm {
    font-size: var(--fontsize-18);
    margin-bottom: 48px;
}


.firmname_navi, #navigationbar:hover .firmname_navi {
    transform: rotate(-90deg);
    font-size: 26.5px;
    font-weight: 500;
    margin-left: 0;
    margin-top: 95px;
    width: 40px;
}

.nowrap {
    white-space: nowrap;
}

.hightlighter {
    position: relative;
}

    .hightlighter:after {
        content: "";
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        color: none;
        background: #43E94A;
        animation: highlight 0.75s forwards;
        animation-direction: alternate; /* Make the animation run back and forth */
    }

input#txtSearch {
    padding-left:42px;
}
.input_icon_search {
    position: absolute;
    top: 42px;
    left: 12px;
    color: #A6A6A6;
}

@keyframes highlight {
    0% {
        width: 0;
        opacity: 0;
        color: none;
    }

    50% {
        width: 50%;
        opacity: 1;
        color: none;
    }

    100% {
        width: 0%;
        opacity: 0;
        color: none;
    }
}




/* Responsive */
.container {
    display: grid;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

@media (min-width: 320px) {
    .container {
        max-width: 640px;
        padding:0;
    }
    #navigationbar{
        display:none;
    }
    .mob_logout{
        display:block;
        position:absolute;
        top:24px;
        left:16px;
    }
    .overview_top_standard {
        margin: 60px 0 0 0;
    }
    .tilbuds_header {
        grid-template-columns: 9fr 0 9fr;
    }
    
    .tilbudslist_header, .offerlist_item {
        grid-template-columns: 6fr 6fr;
    }
    .bottom_form_offer input {
        margin-bottom:32px;
    }
    .checkboxwrap small {
        float:left;
    }
}

@media (min-width: 641px) {
    .container {
        max-width: 767px;
    }
     #navigationbar{
        display:none;
    }
    .tilbuds_header {
        grid-template-columns: 9fr 0 9fr;
    }
    
    .tilbudslist_header, .offerlist_item {
        grid-template-columns: 6fr 6fr;
    }
    .checkboxwrap small {
        float: left;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 1024px;
    }
     #navigationbar{
        display:none;
    }
    .mob_logout{
        display:none;
    }
     .overview_top_standard {
        margin: 120px 0 0 0;
    }
    .mob_logout {
        display: block;
        position: absolute;
        top: 24px;
        left: 16px;
    }
    .offerlist_item {
        grid-template-columns: 0.5fr 1fr 1.5fr 4.5fr 1.5fr 1.5fr 2fr 0.5fr;
    }
    .tilbudslist_header {
        grid-template-columns: 0.5fr 1.4fr 1.5fr 4.0fr 1.9fr 1.7fr 2.8fr 0.5fr;
    }
    .tilbudslist_header {
        padding: 12px 5px;
    }
    .checkboxwrap small {
        float: none;
    }
}

@media (min-width: 1025px) {
    .container {
        max-width: 1280px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-template-rows: 1fr;
        padding: 0 1em 0 8em;
    }
    #navigationbar {
        display: grid;
    }
    .mob_logout {
        display: none;
    }
    .tilbudslist_header {       
        grid-template-columns: 0.5fr 1fr 1.5fr 4.5fr 1.5fr 1.5fr 2fr 0.5fr;       
    }
}
