@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

.font-family-karla {
    font-family: karla;
}

.bg-sidebar {
    background: #3d68ff;
}

.cta-btn {
    color: #3d68ff;
}

.upgrade-btn {
    background: #1947ee;
}

.upgrade-btn:hover {
    background: #0038fd;
}

.active-nav-link {
    background: #1947ee;
}

.nav-item:hover {
    background: #1947ee;
}

.account-link:hover {
    background: #3d68ff;
}

.btn {
    background-color: #4CAF50;
    /* Green */
    border-radius: 8px;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
}

.btn:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/** Datatables **/

thead input {
    width: 50px;
}

#joblist span {
    display:none; 
}
    <!--TODO LIST-->
/*     body {
        font: normal normal 13px/16px "Open Sans", sans-serif;
        background: #dfdfdf;
        }
        
    .container{
    padding: 20px;

    margin: 0 auto;
    margin-top: 40px;
    background: slategray;
    border-radius: 5px;}

    form {
    display: inline-block;
    }

    input{
    padding: 4px 15px 4px 5px;
    border:#000
    }

    #button{
    display: inline-block;
    background-color:#fc999b;
    color:#ffffff;
    border-radius: 5px;
    text-align:center;
    margin-top:2px;
    padding: 5px 15px;
    }

    #button:hover{
    cursor: pointer;
    opacity: .8;}

    ol {padding-left: 20px;}

    ol li {padding: 5px;color:#000;}

    ol li:nth-child(even){background: #dfdfdf;}

    .strike{text-decoration: line-through;}

    li:hover{
        cursor: pointer;
        }
 */

  
  /* Center the list */
  body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f3f5fc;
  }
  
  #listWrapper {
    background: white;
    border-radius: 9px;
    border: 1px solid #e7ecfb;
    box-shadow: 0 0 30px rgba(211, 220, 248, .3);
    padding: 30px;
  }
  
  /* List title */
  #title {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  #titleInput {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #666f99;
    padding: 9px 18px;
  }
  
  #titleInput::placeholder {
    color: rgba(63, 69, 95, .3);
  }
  
  /* List title pencil */
  .fa-pencil-alt {
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    pointer-events: none;
    color: #a8baf0;
  }
  
  /* Separator */
  #separator {
    margin: 12px 0;
    box-shadow: 0 12px 12px rgba(211, 220, 248, .3);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    max-width: 100%;
    height: 10px;
  }
  
  /* To do items wrapper */
  #itemsWrapper {
    padding: 8px 8px;
    margin: 12px 0;
  }
  
  /* To do item */
  .item {
    width: 100%;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    border-radius: 12px;
    border: 0;
    padding: 9px 12px;
    color: #3f455f;
    position: relative;
  }
  
  .itemInner {
    padding: 9px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  
  .itemInner p {
    margin: 0;
    pointer-events: none;
  }
  
  /* Item buttons */
  .fa-trash-alt {
    pointer-events: none;
    color: #000000;
    font-size: 18px;
  }
  
  .removeItemBtn {
    position: absolute;
    right: 4px;
    background: transparent;
    color: black;
    border: 0;
    cursor: pointer;
    opacity: 0;
  }
  
  .fa-hand-point-right {
    color: #a8baf0;
    margin-right: 9px;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Add a new item section */
  #addNewItemWrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  #addNewItemInput {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-radius: 9px;
    color: #666f99;
    padding: 12px 60px 12px 18px;
    background: #f3f5fc;
  }
  
  #addNewItemBtn {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 18px;
    background: transparent;
    border: 0;
    color: #666f99;
    cursor: pointer;
    font-size: 18px;
  }

  #chart_wrapper {
    overflow-x: scroll;
    overflow-y: scroll;
    max-width: 100%;
}

#listOfTasks {
	margin-top: 25px;
	background-color: #e5ecf9;
	padding: 10px 25px;
	border-radius: 10px;
	max-height: 400px;
	display: none;
	overflow-y: auto;
	font-size: 17px;
}

.taskWrapper {
	border-bottom: 1px solid #dfdfdf;
	width: 445px;
	position: relative;
	height: 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 10px;
}

.newtask {
	border: 1px solid #cecece;
	width: 400px;
	height: 35px;
	border-radius: 10px;
	text-indent: 15px;
	font-size: 18px;
  padding: 10px;
}

.edittask {
	margin-right: 10px;
	width: 360px;
}

input[type="button"] {
	border-radius: 70px;
	width: 25px;
	height: 25px;
	color: #ffffff;
	font-family: arial;
	font-size: 0.8em;
	border: 0;
  cursor: pointer;
}

.confirmtask {
	background-color: rgb(0, 148, 0);
	font-size: 1.1em;
  margin-left: 10px;
}

.deletetask {
	background-color: rgb(168, 4, 4);
	position: absolute;
	right: 5px;
	top: 18px;
}

input[type="checkbox"] {
margin-right: 10PX;
}

.alignleft {
	float:left;
}

.alignright {
	float:right;
}
.clearfix {
	clear: both;
}

.taskContent {
	position: relative;
	top: 10px;
}

