.editor-modal {
    display: none; 
    z-index: 1000; 
    width: 100%;
    height: 100%;
  }
  
  
  .editor-close {
    color: var(--navy);
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .editor-close:hover,
  .editor-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.editor-sideBar{
    position: fixed;
    background-color: var(--navy);
}

#editor-sideBar-content{
    width: 90vw;
    margin: 0 auto;
    height: 100vh;
    overflow: auto;
    padding-top: 0;
    margin-left:10vw;
    margin-top: 0;
    background-color: var(--lightest-navy);
}

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

#editor-sideBar-button{
    height: 60px;
    width: 90%;
    margin:0 auto;
    font-weight: 600;
    cursor: pointer;
    border-bottom-style:solid ;
    border-bottom-width: 1px ;
    border-bottom-color: var(--navy)
}

#editor-sideBar-button button{
    display: block;
    padding: 17.5px;
    height: 25px;
    font-size: 25px;
    background-color: var(--lightest-navy);
    border: none;
    color: white;
}

#editor-sideBar-button button:hover{
    background-color: rgb(195, 197, 197);
    
}


@media screen and (max-width:900px) {
    .editor-sideBar{
        top:0px;
        bottom: 0px;
    }
    #editor-sideBar-content{
        width: 70vw;
        margin-left:25vw;
    }
}
@media screen and (max-width:600px) {
    .editor-sideBar{
        top:0px;
        bottom: 0px;
    }
    #editor-sideBar-content{
        width: 70vw;
        margin-left:30vw;
    }
    #editor-sideBar-button{
        height: 50px;
    }

    #editor-sideBar-button button{
        padding: 15px;
        height: 18px;
        font-size: 18px;
    }
    
}
.sidenavnav{
  position: fixed;
  top:0px;
  bottom: 0px;
  width: 10vw;
  padding-top: 0;
  background-color: var(--navy);
  border-right: 1px solid var(--navy);
}

.sidenavnav-content{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width:100%;
  margin-top: 0px;
  font-size: 0.5rem;
}

.sidenavnav-btn{
  width:100%;
  height:1.4rem;
  line-height: 1.4rem;
  background-color: var(--navy);
  color: white;
  cursor: pointer;
}

.sidenavnav-btn button{
  height: 1rem;
  width: 1rem ;
  background-color: var(--navy);
  border: none;
  color: white;
}

.sidenavnav-icon{
  font-size: 0.4rem;
}

@media screen and (max-width:900px) {
  .sidenavnav{
    width: 20vw;
    left: 5vw;
    top:0px;
    bottom: 0px;
  }
  .sidenavnav-btn{
    height:3rem;
    line-height: 3rem;
    border-radius: 0.6rem;
    font-size: 1rem;
  }
  .sidenavnav-btn button{
    height: 2rem;
    width: 2rem ;
    margin-right:0.5rem;
  }.sidenavnav-icon{
    font-size: 1rem;
  }
}

@media screen and (max-width:600px) {
  .sidenavnav{
    width: 30vw;
    left: 0;
    top:0px;
    bottom: 0px;
  }
  .sidenavnav-btn{
    height:4rem;
    line-height: 4rem;
    border-radius: 0.8rem;
    font-size: 1rem;
  }
  .sidenavnav-btn button{
    height: 3rem;
    width: 3em ;
    margin-right:0.5rem;
  }
  .sidenavnav-icon{
    font-size: 1rem;
  }
}

.editor-sideBar-setting-div{
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-radius: 0.2rem;
    border-color :rgb(195, 197, 197);
    margin-bottom:0.45rem ;
    background-color: white;
}

#editor-d{
    width: 100%;
    margin-bottom:0.4rem ;
}

#editor-d h2{
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 0.55rem;
    color: white;
}

.editor-sideBar-setting-div h3{
    width: 95%;
    margin: 0 auto;
    font-size: 0.52rem;
    margin-top: 20px;
    margin-bottom:.25rem;
    color: var(--lightest-navy);
}
#editor-d p{
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 0.52rem;
    color:rgb(195, 197, 197);
    font-family:'Times New Roman', Times, serif;
}
.editor-sideBar-setting-div p{
    width: 95%;
    margin: 0 auto;
    font-size: 0.45rem;
    margin-top: 10px;
    color: var(--lightest-navy);
    font-family:'Times New Roman', Times, serif;
}

.editor-sideBar-setting-div textarea {
    width: 95%;
    box-sizing: border-box;
    display: block;
    font-size: 0.38rem;
    height: 1.5rem;
    line-height: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
    margin:0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--lightest-navy);
    border-radius: 0.24rem;
    resize: none;
    color: var(--lightest-navy);
}

.editor-sideBar-setting-div textarea:focus{
    border-color: var(--navy);
}

#editor-input-seo-title{
    width: 100%;
    margin: 0 auto;
    font-size: 0.4rem;
    height: 1rem;
    border-style: solid;
    border-color: var(--navy);
    color: white;
    border-width: 1px;
    border-radius: 0.2rem;
    margin-bottom:0.4rem ;
    background-color: var(--lightest-navy);
    box-shadow: 0 0.18rem var(--navy);
}

#editor-input-seo-title:active{

  box-shadow: 0 0.1rem #666;
  transform: translateY(4px);
}

#editor-check {
    margin-bottom: 20px;
}

@media screen and (max-width:900px) {
    #editor-d h2{
        font-size: 1rem;
    }
    .editor-sideBar-setting-div h3{
        font-size: 0.90rem;
    }
    #editor-d p{
        font-size: 0.9rem;
    }
.editor-sideBar-setting-div p{
    font-size: 0.8rem;
}
.editor-sideBar-setting-div textarea {
    font-size: 0.7rem;
    height: 2.4rem;
    line-height: 2.4rem;
    border-radius: 0.5rem;
}
#editor-input-seo-title{
    font-size: 0.8rem;
    height: 1.5rem;
}
}

@media screen and (max-width:600px) {
    #editor-d h2{
        font-size: 1.3rem;
    }
    .editor-sideBar-setting-div h3{
        font-size: 1.2rem;
    }
    #editor-d p{
        font-size: 1.2rem;
    }
.editor-sideBar-setting-div p{
    font-size: 1.1rem;
}
.editor-sideBar-setting-div textarea {
    font-size: 0.9rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 0.7rem;
}
#editor-input-seo-title{
    font-size: 1.1rem;
    height: 2rem;
}
}

/*# sourceMappingURL=746.style.fb7217e3.css.map*/