.workspace{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../../images/backgrounds/3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 50px;
}
.workspace.preview{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../../images/backgrounds/4.png);
}
.workspace .content{
    position: relative;
    margin-top: 20px;
    background-color: #e5e5e5;
    border-radius: 25px;
    height: calc(100vh - 160px);
    max-height: calc(100vh - 160px);
}
.workspace.preview .content{
    background-color: transparent;
}
.workspace .content img.base{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}
.workspace.preview .content img.base{
    object-fit: fill;
}
.workspace .content img.logo{
    width: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.workspace .tooltip{
    display: inline-block;
}
.workspace .tooltip div{
    background-color: white;
    border-radius: 15px;
    padding: 10px 30px;
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
}
.workspace .tooltip div span{
    position: relative;
    width: 30px;
    height: 30px;
}
.workspace .tooltip div span i,
.workspace .tooltip div span img{
    width: 22px;
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.workspace .tooltip-1{
    position: absolute;
    top: 5%;
    right: 10%;
}
.workspace .tooltip-3{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0px);
}
.workspace .tooltip-2 div{
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    top: 35%;
    left: 20px;
    padding: 15px 10px;
    gap: 16px;
}
.workspace .tooltip-2 div span{
    display: inline-table;
}
@media only screen and (max-width: 1024px){
    .workspace .tooltip div{
        border-radius: 10px;
        padding: 8px 20px;
        gap: 25px;
    }
    .workspace .tooltip div span{
        font-size: 15px;
        width: 20px;
        height: 20px;
    }
    .workspace .tooltip div span i,
    .workspace .tooltip div span img{
        width: 18px;
        font-size: 18px;
    }
    .workspace .tooltip-2 div{
        gap: 20px;
    }
}
@media only screen and (max-width: 512px){
    .workspace{
        padding: 30px;
    }
    .workspace .content img.base {
        border-radius: 15px;
    }
    .workspace .content img.logo {
        width: 45px;
        top: 10px;
        left: 10px;
    }
    .workspace .tooltip div {
        border-radius: 10px;
        padding: 8px 15px;
        gap: 15px;
    }
    .workspace .tooltip div span {
        font-size: 12px;
        width: 15px;
        height: 15px;
    }
    .workspace .tooltip div span i, 
    .workspace .tooltip div span img {
        width: 13px;
        font-size: 13px;
    }
    .workspace .tooltip-1 {
        top: 3%;
        right: 3%;
    }
    .workspace .tooltip-2 div{
        left: 10px;
        gap: 12px;
    }
    .workspace .tooltip-3 {
        bottom: 3%;
    }
}


.model{
    display: none;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 70px;
    border-radius: 25px;
    z-index: 999;
    width: 512px;
    text-align: center;
}
.model.open{
    display: block;
}
.save-model h2{
    font-size: 25px;
}
.save-model .actions{
    margin-top: 25px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-weight: 800;
}
.save-model .actions span{
    cursor: pointer;
}
body.model-open:after{
    content: '';
    background-color: rgba(0, 0, 0, 0.555);
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}
.upload-model .upload{
    color: black;
    text-align: center;
}
.upload-model .upload h4{
    color: black;
    margin-top: 15px;
}
.upload-model .upload h4 a{
    color: #BDB676;
}
.upload-model .upload p{
    color: black;
    font-size: 15px;
}
@media only screen and (max-width: 512px){
    .model{
        width: 90%;
        padding: 20px 40px;
    }
}