/* ------------------------------------------ Landing Page Content (Desktop / Laptops) ------------------------------------------ */



/* **************************************** Desktop / Laptops Devices **************************************** */



/* ---------------------------------------- Header & Footer ---------------------------------------- */





/* ---------------------------------------- Preview Bins ---------------------------------------- */

#showPreviewBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 50px;

    width: 60px;
    height: 60px;

    background-color: var(--tertiary);
    border: 2px solid var(--tertiary);

    border-radius: 50px;

    transition: 0.2s ease-in-out;
}
#showPreviewBtn:hover{
    cursor: pointer;
    background-color: var(--tertiary_dark);
    border: 2px solid var(--tertiary_dark);
}

.previewBin{
    display: flex;
    flex-direction: column;
    justify-content: start;

    position: sticky;
    position: -webkit-sticky;
    top: 0;

    z-index: 100;

    width: calc(95% - 8px);
    height: fit-content;
    max-height: calc(100vh - 8px);
    
    border: 4px solid var(--tertiary);

    transition: 0.4s ease-in-out;
}
.previewBinContent{
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;

    overflow-x: hidden;
    /* overflow-y: scroll; */

    width: calc(100%);
    min-height: 0px; height: fit-content;

    padding: 0;
    margin: 0;

    transition: 0.4s ease-in-out;
}
/* .previewBinTitle:hover{
    cursor: pointer;

    background-color: rgb(224, 224, 224);
} */

.collapse_extend_icon{
    transition: 0.2s ease-in-out;
}








/* ---------------------------------------- Edit View wrappers ---------------------------------------- */

/* ---------- Header Wrappers ---------- */

/* ----- Header Wrapper ----- */
.editViewHeaderWrapper{
    display: inline-block;

    width: calc(100% - 8px);
    height: calc(100% - 8px); max-height: calc(100% - 8px);

    padding: 0;

    border: 4px dashed rgba(0, 0, 0, 0.0);

    transition: 0.2s ease-in-out;
}
.editViewHeaderWrapper:hover{
    border: 4px dashed green;
}


/* ----- Header Tab Wrapper ----- */
.editViewHeaderTabWrapper{

    width: fit-content;
    max-height: calc(80% - 6px);

    padding: 0;

    border: 3px dashed rgba(0, 0, 0, 0.0);

    transition: 0.2s ease-in-out;
}
.editViewHeaderTabWrapper:hover{
    border: 3px dashed var(--primary);
}


/* ----- Container Wrapper ----- */
.editViewContainerWrapper{
    /* display: block; */
    /* position: relative;
    z-index: 900; */

    width: calc(100% - 16px);
    /* height: calc(100% - 16px); */

    margin: 0 0 20px;

    /* background-color: rgba(0, 0, 0, 0.4); */
    border: 8px dashed rgba(0, 0, 0, 0.0);

    transition: 0.2s ease-in-out;
}
.editViewContainerWrapper:hover{

    background-color: var(--bg7);
    /* border: 8px dashed var(--accent); */
    border: 8px dashed gray;
}


/* ----- Object Wrapper ----- */
.editViewObjectWrapper{
    /* position: relative;
    z-index: -1; */
    
    width: calc(100% - 16px); max-width: calc(100% - 16px);
    height: calc(100% - 6px);

    margin: 10px 0;

    /* background-color: rgba(0, 0, 0, 0.4); */
    border: 3px dashed rgba(0, 0, 0, 0.0);

    transition: 0.2s ease-in-out;
}
.editViewObjectWrapper:hover{
    border: 3px dashed var(--primary);
    background-color: rgba(247, 247, 247, 0.7);
}

.editViewFeatureCardWrapper{
    display: flex;
    flex-direction: column;

    width: fit-content;
    height: fit-content;

    border: 1px dashed rgba(0, 0, 0, 0.0);

    transition: 0.2s ease-in-out;
}
.editViewFeatureCardWrapper:hover{
    border: 1px dashed var(--primary);
}

#editHdrBtn{
    position: absolute;
    z-index: 999;

    left: 0px;
    top: 30px;
}


/* ----- Footer ----- */
.footerContentContainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    /* overflow: hidden; */

    width: 100%;
    height: fit-content;
    min-height: 200px;

    padding: 10px 0;
    margin: 0;

    /* background-color: var(--bg1); */
    background-color: white;

    /* border-bottom: 1px solid;
    border-color: var(--border1); */
}
.footerBin{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    width: 80%;

    margin: 10px 0;
    /* border: 1px solid blue; */
}
.footerBin .itemlist{
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0 1px;
    padding: 2px;
}
.footerBin .itemlist .item{
    margin: 0 15px;
}
.footerBin .socialBin{
    margin: 0 10px;
}
.socialIconTag{
    object-fit: contain;
    /* max-width: 25px; */
    margin: 0 2px;
}




/* ----- Subcontainer Heroes ----- */



/* Content bins */
.smallBin{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: 39%;
    padding: 5px;
    /* border: 1px solid green; */
}
.bigBin{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: 59%;
    padding: 5px;
    /* border: 1px solid blue; */
}
.halfBin{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: 49%;
    padding: 5px;
    /* border: 1px solid green; */
}

/* Button bins */
.btnBinHoriz{
    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    height: inherit;
    width: 100%;

    /* border: 1px solid black; */
}
.btnBinVert{
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    height: inherit;
    width: 100%;

    /* border: 1px solid black; */
}

/* Media bins and widgets  */
.mediaBin{
    width: 100%;
    height: 100%;

    margin: 20px 0;
    padding: 0;

    /* border: 1px solid red; */
}


/* Text bins */
.textBin{
    width: 95%;
}


/* ----- Main Content Widgets ----- */

.mainHeader{
    text-align: center;
    width: 100%;
    height: 100px;
    margin: 20px 0;
}
.subHeader{
    text-align: center;
    width: 100%;
    /* height: 100px; */
    margin: 10px 0;
    /* border: 1px solid blue; */
}
.subText{
    text-align: center;
    width: 100%;
    /* height: 100px; */
    margin: 10px 0;
    padding: 4px;
}

/* Cards */
.cardSmall{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

    width: 250px;
    height: 300px;
    flex-shrink: 0;

    margin: 0 10px;
    padding: 10px 5px;

    color: black;
    border: 1px solid lightgray;
    border-radius: 4px;
    background-color: white;
}

/* ----- Object Action Classes ----- */
.reverseRowFlex{
    display: flex;
    flex-direction: row-reverse;
}
.CMS_optionsIcon{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;

    padding: 0 10px;
}
.CMS_optionsIcon:hover{
    cursor: pointer;
}



/*  ----- Floating Mykro Button ----- */
#floatingMenuBtn{
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;

    /* font-family: Eastman Grotesque Alt */
    /* font-size: 50px; */
    line-height: -50px;

    user-select: none;

    width: 80px;
    height: 80px;

    padding: 0;
    padding-bottom: 10px;

    /* color: white; */
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    /* box-shadow: 2px 2px 2px -2px black; */

    transition: 0.25s ease-in-out;
}
#floatingMenuBtn:hover,
#floatingMenuBtn:focus{
    cursor: pointer;
    color: white;
    background-color: var(--primary_dark);
    border-radius: 0px;
}
#floatingMenuBtnText{
    height: 50px;
    line-height: 40px;
}
#floatingMenu{
    display: none;
    position: fixed;

    z-index: 900;

    right: 25px;
    bottom: 104px;

    width: 200px;
    height: 0;

    list-style: none;

    padding: 5px 2px;
    margin: 0;

    background-color: white;
    border: 1px solid var(--primary);
    border-radius: 5px;

    transition-delay: 250ms;

    transition: 0.4s ease-in-out;
}

.menuListItem1{
    font-size: 14px;
    font-weight: 100;
    margin: 1px 0;
    padding: 8px 5px;

}
.menuListItem1:hover{
    cursor: pointer;
    color: var(--primary);
    background-color: whitesmoke;
}

