/* FONT */
@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro&display=swap');

:root{

    --theme-color: #555;
    --secondary-color: dodgerblue;
    --white-color: white;
    --black-color: black;
    --font-size: 18px;
    --default-border-radius: 5px;

    --font-family: Quicksand, sans-serif;

    --color-one: dodgerblue;
    --color-two: deepskyblue;
}

html{
    background: linear-gradient(to right, var(--color-one) 0%, var(--color-two) 100%);
    color: var(--white-color);
    /* background: white; */

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

html,textarea,button,input,select{
    /* font-family: 'Josefin Sans', sans-serif; */
    /* font-family: 'Lexend', sans-serif; */
    font-family: var(--font-family);
    font-size: calc(var(--font-size) + 0px);
}

button,input,select,textarea{
    outline: none;
    border: none;
}

button:active{
    transform: scale(0.95);
}

a{
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;
}

.container{
    margin-top: 80px;
    width: 50%;
}


.title{
    font-weight: bold;
    font-size: calc(var(--font-size) + 0px);
}

.message-div{
    background: var(--white-color);
    color: var(--theme-color);
    font-size: calc(var(--font-size) + 0px);
    width: calc(90% - 20px);
    padding: 10px;
    border-radius: var(--default-border-radius);
    margin-top: 10px;
}

.message-div span{
    font-size: calc(var(--font-size) - 2px);
    color: var(--secondary-color);
}

.message-div img{
    width: 80px;
    height: 80px;
    /* border: 1px solid var(--theme-color);
    border-radius: 50%; */
    object-fit: contain;
    margin-bottom: 10px;
}

.message-div button{
    border-radius: var(--default-border-radius);
    height: 50px;
    width: 90%;
    background: var(--secondary-color);
    color: var(--white-color);
    font-weight: bold;
    margin-top: 10px;
}

.message-div .accept{
    width: 45%;
    background-color: seagreen;
}

.message-div .decline{
    width: 45%;
    background-color: tomato;
}


.error-image{
    width: 80%;
    height: 200px;
    object-fit: contain;
}

.error-message{
    color: var(--theme-color);
    background: var(--white-color);
    width: 80%;
    border-radius: var(--default-border-radius);
    padding: 5px;
    font-size: calc(var(--font-size) + 0px);
}

.error-message b{
    color: tomato;
    font-size: calc(var(--font-size) + 4px);
}





/* USED IN THEME EDITOR PAGE */

.info-paragraph{
    font-size: calc(var(--font-size) + 0px);
}
.heading-small{
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: calc(var(--font-size) - 2px);
}

.heading-small b{
    color: var(--secondary-color);
    background: var(--white-color);
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: var(--default-border-radius);
    font-size: calc(var(--font-size) + 0px);
}



/* COMMON CSS FOR SMALL TYPE BUTTONS */
/* USED IN PROJECT LOCKED SUBSCRIPTION BUTTON */
.button{
    width:250px;
    height:50px;
    margin-top:5px;
    border-radius: var(--default-border-radius);
    font-weight:bold;
    background: var(--white-color);
    color:var(--theme-color);
}

.button span{
    font-size:calc(var(--font-size) - 2px);
}  

.button-red{
    background-color: tomato;
}

.button-blue{
    background-color: var(--secondary-color);
    color:var(--white-color);
    font-weight:bold;
}

.button img{
    width:100%;
    height:100%;
    object-fit: contain;
}




/* EDIT PROJECT DETAILS */
.input-textarea{
    height: 300px;
    width: 90%;
    border-radius: var(--default-border-radius);
    margin-top: 10px;
    padding: 10px;
    font-size: calc(var(--font-size) + 0px);
}


/* LOGIN & SIGNUP PAGE */
/* FOR TEXT MOVING WHILE CLICKING TEXT BOX */

.error-login-page{
    color: tomato;
    margin-top: 10px;
    font-size: calc(var(--font-size) + 0px);
    font-weight: bold;
}

.input{
	width: 90%;
	padding: 10px;
	font-size: 20px;
	border: none;
	outline: none;
    background-color: var(--white-color);
	border-radius: 5px;
	font-family: var(--font-family);
    margin-top: 10px;
}

.search_div{
    top: 60px;
    left: 0;
    width: 100%;
    height: 60px;
    position: fixed;
    text-align: center;
    z-index: 2;
    padding: 0;
    background: linear-gradient(to right, var(--color-one) 0%, var(--color-two) 100%); 
}

#search_box{
    width: 80%;
	padding: 10px;
	font-size: 20px;
	border: none;
	outline: none;
    margin: 5px;
    height: 50px;
	border-radius: 5px;
	font-family: var(--font-family);
}

.subbtn{
	border: none;
	outline: none;
	font-weight: bold;
	margin-top: 25px;
	padding: 15px;
	border-radius: 50px;
	background: white;
    font-size: calc(var(--font-size) + 0px);
	color: var(--color-one);
    width: 90%;
}

.subbtn:active{
	transform: scale(0.95);
}

.box-div{
	border: 1px solid var(--white-color);
	text-align: center;
	padding: 10px;
	border-radius: 5px;
	background: var(--white-color);
	color: var(--black-color);
	width: calc(40% - 20px);
	margin-top: 10px;
}

@media screen and (max-width: 980px){
	.form{
		width: 100%;
	}

	.box-div{
		width: calc(90% - 20px);
	}
}




/* HOME PAGE */

.logo-image{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 150px;
    height: 150px;
    border: 1px solid var(--black-color);
    border-radius: 20%;
    object-fit: contain;
    box-shadow: 3px 5px 10px var(--black-color);
    transition: all ease 0.3s;
}

.logo-image:active{
    transform: scale(0.8);
    transition: all ease 0.3s;
}

.heading{
    font-size: calc(var(--font-size) + 7px);
    font-weight: normal;
    color: var(--white-color);
    width: 90%;
    text-align: justify;
}

.heading b{
    font-size: calc(var(--font-size) + 12px);
}

.menu-button{
    width: 90%;
    height: 60px;
    font-size: calc(var(--font-size) + 0px);
    font-weight: bold;
    color: var(--theme-color);
    background: var(--white-color);
    border-radius: var(--default-border-radius);
    margin-top: 10px;
}

.menu-button img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 5px;
}

.menu-button .title{
    top: -7.5px;
    left: 5px;
    position: relative;
}

.menu-button-disabled{
    opacity: 0.7;
}

.pro{
    background: var(--secondary-color);
    color: var(--white-color);
    border: 0.5px solid var(--secondary-color);
    padding: 5px;
    border-radius: var(--default-border-radius);
    left: 5px;
    position: relative;
    font-size: calc(var(--font-size) - 4px);
}


/* CREATE NEW PROJECT */
.project-visibility{
    margin-top: 10px;
    width: calc(90% - 10px);
    background: var(--white-color);
    color: var(--theme-color);
    padding: 5px;
    border-radius: var(--default-border-radius);
    line-height: 25px;
    font-size: calc(var(--font-size) - 4px);
}

.project-visibility b{
    color: var(--secondary-color);
}

.project-visibility span{
    font-weight: bold;
}



/* OPEN SAVED PROJECTS */
.content{
    width: 90%;
    margin-top: 10px;
    padding: 5px;
    padding-bottom: 10px;
    border-radius: var(--default-border-radius);
    background: var(--white-color);
    color: var(--theme-color);
}

.content .left{
    width: 20%;
    display: inline-block;
}

.content .left .brackets_image{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.content .right{
    width: calc(80% - 10px);
    display: inline-block;
    text-align: left;
}

.content .right .project_name{
    margin: 0;
    line-height: 30px;
    font-weight: bold;
    font-size: calc(var(--font-size) + 2px);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.content .right .description{
    margin: 0;
    font-weight: normal;
    text-align: justify;
    font-size: calc(var(--font-size) - 2px);

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.content .right .modified_date{
    margin: 0;
    line-height: 20px;
    font-weight: normal;
    color: var(--secondary-color);
    font-size: calc(var(--font-size) - 4px);
}

.content .viewbtn{
    border-radius: 25px;
    margin-top: 10px;
    height: 50px;
    padding: 10px 30px 10px 30px;
    font-weight: bold;
    font-size: calc(var(--font-size) + 0px);
    background: linear-gradient(to right, var(--color-one) 0%, var(--color-two) 100%);
    color: var(--white-color);
}



/* VIEW PROJECT */
.view-project{
    text-align: left;
    width: 90%;
}

.view-project .project_name{
    font-size: calc(var(--font-size) + 7px);
    font-weight: bold;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;

    overflow-x: hidden;
}

.view-project .description{
    font-size: calc(var(--font-size) - 2px);
    font-weight: normal;
    text-align: justify;

    display: -webkit-box;
    -webkit-line-clamp: 50;
    -webkit-box-orient: vertical;  
    overflow: hidden;

    overflow-x: hidden;
}

.view-project .last_modified{
    font-size: calc(var(--font-size) - 2px);
    font-weight: normal;
    color: var(--white-color);
}

.view-project .project-visibility{
    font-size: calc(var(--font-size) - 2px);
    background: var(--white-color);
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.view-project .visit-website-span{
    color: var(--white-color);
    font-size: calc(var(--font-size) - 2px);
}

.view-project .visit-my-website{
    font-weight: bold;
    margin-bottom: 30px;
    overflow-x: hidden;
}

.view-project .visit-my-website span{
    color: var(--white-color);
}

@media screen and (max-width: 980px){
    .view-project .project_name{
        overflow-x: scroll;
    }
    .view-project .project_description{
        overflow-x: scroll;
    }
    .view-project .visit-my-website{
        overflow-x: scroll;
    }
}

  

.view-project .heading{
    font-size: calc(var(--font-size) + 0px);
    font-weight: bold;
}

.view-project .heading-small{
    font-size: calc(var(--font-size) - 2px);
}


/* THIS BUTTON IS FOR ADD NEW PEOPLE */
.view-project .button-user:active{
    transform: scale(0.95);
}

.view-project .button-user .right .name{
    margin-top: -6px;
    color: var(--secondary-color);
}


/* THIS BUTTON IS FOR EDIT PROJECT */
.view-project .button-user-edit:active{
    transform: scale(0.95);
}

.view-project .button-user-edit .right .name{
    color: var(--secondary-color);
}

/* THIS BUTTON IS FOR EXIT THE PROJECT */
.view-project .button-user-exit:active{
    transform: scale(0.95);
}

.view-project .button-user-exit .right .name{
    color: tomato;
}

.red-text{
    color: tomato;
    background: var(--white-color);
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: calc(var(--font-size) + 0px);
    border-radius: var(--default-border-radius);
}


.user-content{
    height: 50px;
    padding: 5px 20px 5px 20px;
    border-radius: 50px;
    background: var(--white-color);
    margin-top: 10px;
}

.user-content-admin{
    border-radius: var(--default-border-radius) var(--default-border-radius) 0 0;
}

.user-content .left{
    width: 15%;
    height: 100%;
    float: left;
}

.user-content .right{
    width: calc(85% - 10px);
    height: 100%;
    float: left;
}

.user-content .left .profile-img-small{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-content .right .name{
    margin: 0;
    margin-left: 5px;
    color: var(--theme-color);
    line-height: 50px;
    font-weight: bold;
    font-size: calc(var(--font-size) + 0px);

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.div-bottom{
    width: 100%;
    height: 60px;
    background: var(--white-color);
    border-radius: 0 0 var(--default-border-radius) var(--default-border-radius);
}

.div-bottom-blue{
    background: var(--secondary-color);
}

.div-bottom-blue .info_text{
    top: 5px;
    position: relative;
    font-size: calc(var(--font-size) - 2px);
    color: var(--white-color);
}

/* TUTORIALS PAGE */
.tutorial-content{
    width: 96%;
    padding: 2%;
    overflow-x: scroll;
    font-size: calc(var(--font-size) - 2px);
    text-align: justify;
}

.tutorial-content .title{
    font-size: calc(var(--font-size) + 2px);
    text-align: justify;
    margin: 0;
}

.tutorial-content a{
    color: var(--secondary-color);
}

.tutorial-content h1,h2,h3,h4,h5,h6{
    font-size: calc(var(--font-size) + 0px);
}


/* QUESTIONS PAGE */
.questions-content{
    width: 90%;
    text-align: left;
    margin-top: 10px;
    padding: 10px;
    font-size: calc(var(--font-size) - 2px);
    border-radius: var(--default-border-radius);
    background: var(--white-color);
    color: var(--theme-color);
}

.questions-content .question{
    font-weight: bold;
    font-size: calc(var(--font-size) + 0px);
    color: var(--secondary-color);
}



/* ABOUT US PAGE */
.about-us-div{
    background: var(--white-color);
    color: var(--theme-color);
    font-size: calc(var(--font-size) + 0px);
    border-radius: var(--default-border-radius);
    margin-top: 10px;
    text-align: justify;
    width: calc(96% - 30px);
    padding: 15px;
}

.about-us-div img{
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.about-us-div .about-us-title{
    font-size: calc(var(--font-size) + 8px);
    font-weight: bold;
    margin: 0;
}



/* VIEW SOURCE CODE */
.source_code{
    width: 100%;
    height: calc(100% - 80px);
    border-radius: var(--default-border-radius);
    text-align: left;
}

code{
    text-align: left;
    font-size: calc(var(--font-size) - 2px);
    border-radius: var(--default-border-radius);
}

#myInput{
    width: 0;
    height: 0;
}


@media screen and (max-width: 980px){
    .container{
        width: 100%;
    }
}