body:not(.in-iframe):has(#psadminbar){
    margin-top: 34px;
}
body:not(.in-iframe):has(#psadminbar_dev):has(#psadminbar){
    margin-top: 74px;
}
body:not(.in-iframe):has(#psadminbar_dev){
    margin-top: 40px;
}

body.in-iframe #psadminbar{
    display: none;
}

#psadminbar_dev{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #d71212;
    color: #fff;
    padding: 9.5px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    height: 40px;
}

#psadminbar{
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #000;
    font-family: "Open Sans", helvetica, arial, sans-serif;
    height: 34px;
}
body:not(.in-iframe):has(#psadminbar_dev) #psadminbar{
    top: 40px;
}

#psadminbar .adminbar__left{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 34px;
}

#psadminbar .adminbar__links{
    display: flex;
    align-items: center;
    gap: 0px;
}
#psadminbar .adminbar__links a{
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    line-height: 34px;
    padding: 0 10px;
    display: block;
}
#psadminbar .adminbar__links a.icon-edit{
    position: relative;
    padding-left: 35px;
    
}
#psadminbar .adminbar__links a.icon-edit:before{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    mask-image: url(../img/edit.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
#psadminbar .adminbar__links a.icon-prettyblocks{
    position: relative;
    padding-left: 35px;
    
}
#psadminbar .adminbar__links a.icon-prettyblocks:before{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    mask-image: url(../img/logo-prettyblocks.png);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
#psadminbar .adminbar__links a:hover{
    color: #a4dbe8;
    background-color: #22252a;
}
#psadminbar .adminbar__links a:hover:before{
    background-color: #a4dbe8;
}

#psadminbar .logo{
    display: block;
    text-indent: -90000000000000px;
    overflow: hidden;
    width: 120px;
    height: 12px;
    mask-image: url(../img/logo-prestashop.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #fff;
}
#psadminbar .logo:hover{
    background-color: #a4dbe8;
}
#psadminbar .hey{
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    line-height: 34px;
    padding: 0 10px;
    display: block;
}
#psadminbar .hey:hover{
    color: #a4dbe8;
    background-color: #22252a;
}

@media screen and (max-width: 768px) {
    #psadminbar .adminbar__links{
        display: none;
    }
}