/**
    Elephant - CSS style

    © XScoder 2020
    All Rights reserved

    * IMPORTANT *
    RE-SELLING THIS SOURCE CODE TO ANY ONLINE MARKETPLACE
    IS A SERIOUS COPYRIGHT INFRINGEMENT, AND YOU WILL BE
    LEGALLY PROSECUTED
**/

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Inconsolata:400,500,600,700,800&display=swap');

/* Custom colors */
:root {
  --maincolor: #60c9af;
  --blackcolor: #252525;
  --textnote: #639de8;
  --listnote: #f3b950;
  --imagenote: #e26d6b;
  --audionote: #70ccaf;
  --drawingnote: #eeca4e;
  --videonote: #855ae6;
}

/* General */
body {
	font-size: 14px;
	font-family: 'Poppins';
	padding: 20px;
}

a { color: #050A30; }
a:hover {
   color: #4e8073;
   text-decoration: none;
}

pre {
   width: 100%;
   font-size: 11px;
   border-radius: 5px;
}

h1 {
   font-size: 20px;
   color: #252525;
   font-weight: 800;
}


footer p {
   font-size: 12px;
}

.modal-content {
   border: 0;
   border-radius: 20px;
}

.input-group>.form-control:not(:first-child) {
   color: var(--blackcolor);
}

/* Navbar */ 
.navbar {  background: #050A30 !important; }
.navbar-text {  background: var(--textnote) !important; }
.navbar-list {  background: var(--listnote) !important; }
.navbar-audio {  background: var(--audionote) !important; }
.navbar-drawing {  background: var(--drawingnote) !important; }
.navbar-video {  background: var(--videonote) !important; }
.navbar-image {  background: var(--imagenote) !important; }

.navbar-brand { 
  color: white; 
  font-weight: 600;
}
.navbar-brand:hover { 
   text-decoration: none;
   color: #e1e1e1;
}
.navbar-dark .navbar-nav .nav-link {
   color: #fff;
   font-weight: 600;
}
.nav-link:hover {
   text-decoration: none;
   color: aliceblue
}

.logout-btn {
   color: #405651;
}

.container { 
   margin-bottom: 50px;
   margin-top: 70px;
}

#searchInput {
   background: #f2f2f2;
   border-radius: 99px;
   width: 280px;
}

.dropdown-menu {
   background: var(--maincolor);
}
.dropdown-item {
   color: #fff;
   font-weight: 600;
   font-size: 14px;
}

.dropdown-toggle { font-size: 18px; }
.dropdown-toggle::after { content: none; }

.refresh-btn {
   border-radius: 99px;
   color: #fff;
   border: 1px solid #fff;
   font-size: 12px;
   height: 38px;
   padding-top: 12px;
}

.options-btn {
   border-radius: 99px;
   color: #fff;
   border: 1px solid #fff;
   width: 38px;
   height: 38px;
}



/* Login */
.login-body {
    width: 300px;
    height: 550px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.google-button {
  border-radius: 8px; 
  background: #f1f1f1; 
  border: 1px solid #999; 
  color: #252525; 
  text-decoration: none;
}

.facebook-button {
  border-radius: 8px; 
  background: #3b5998; 
  border: 1px solid #999; 
  color: #fff; 
  text-decoration: none;
}
.facebook-button:hover {
	background: #546ca0;
	color: #f1f1f1;
}

.login-form-control {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.42857143;
    color: #71748d;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d2d2e4;
    height: 48px;
    margin-top: -14px;
}

.login-input-top {
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 48px;
    margin-bottom: -13px;
}

.login-input-bottom {
    padding: 10px;
    padding-right: 50px;    
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 48px;
}

.login-button {
    margin-top: -60px;
    width: 38px;
    float: right;
    height: 38px;
    border-radius: 99px;
    margin-right: 7px;
    font-size: 30px;
    background: transparent;
    border: none;
    color: #050A30;
}

.form-control {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.42857143;
    color: #71748d;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d2d2e4;
    border-radius: 5px;
}

.outine-main-btn {
  background: white;
  border-radius: 99px;
  color: #050A30;
  border: 1px solid #050A30;
  padding: 12px;
  font-weight: 600;
}
.outine-main-btn:hover {
  text-decoration: none;
  background: #050A30;
  color: white;
}

.custom-file-input {
	display: inline-block;
	width: 100%;
	padding: 36px 0 0 0;
	height: 34px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: url('https://cdn1.iconfinder.com/data/icons/hawcons/32/698394-icon-130-cloud-upload-512.png') center center no-repeat #e4e4e4;
	border-radius: 4px;
	background-size: 32px 32px;
}
.circle-img {
	border-radius: 99px;
}
.jumbotron {
	margin-top: 50px;
}

.big-h1 {
  font-size: 40px;
}

.img-src {
  border: 1px solid #f1f1f1; 
  width: 120px; 
  height: 120px; 
  border-radius: 4px;
}


/* Note Card */
#objectCard { margin-bottom: 100px; }

.card {
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 4px 4px #f7f7f7;
}
.card-title {
   font-weight: 600;
   font-size: 20px;
}
.card-text { 
   font-size: 12px; 
   height: 40px;
}

.file-type {
   width: 60px;
   height: 60px;
}

.note-date {
   font-size: 13px;
   float: right;
   margin-top: -10px;
}

/* Card Image */
.card-img-top { height: 160px; }

.card-img-top img {
   height: 100%;
   width: 100%;
   object-fit: cover;
}

#save-delete-buttons {
   width: fit-content;
   float: right;
}

/* View details button */
.view-details-btn {
   float: right;
   font-size: 14px;
   background: #050A30;
   color: #fff;
   font-weight: 600;
   border-radius: 99px;
   width: 50%;
   height: 40px;
   padding-top: 10px;
}
.view-details-btn:hover {
   color: #050A30;
   background: #050A30;
}


/* Buttons */
.btn-primary {
   background: #050A30;
   color: #fff;
   border: 0;
   font-weight: 600;
}

.text-primary {
   color: #050A30;
   font-weight: 600;
}

.text-secondary {
   color: #333;
   font-weight: 600;
}

.text-danger {
   font-weight: 600;
}

.search-btn {
   border: 1px solid #fff;
   background: #050A30 !important;
   color: #fff;
   font-weight: 600;
   font-size: 12px;
   border-radius: 99px;
}

.add-note-btn {
   position: fixed;
   border: 4px solid #fff;
   border-radius: 99px;
   background: #050A30 !important;
   color: #fff;
   width: 80px;
   height: 80px;
   padding: 10px;
   font-size: 32px;
   bottom: 0;
   margin-bottom: 60px;
   margin-left: -34px;
}
.add-note-btn:hover {
   color: #050A30;
   background: #050A30;
}

.play-butt { width: 80px; }

.new-note-modal-body { font-size: 12px; }

.new-note-btn img { 
   width: 60px;
   background: #f7f7f7;
   border-radius: 99px;
   padding: 8px;
}
.new-note-btn img:hover {
   background: #050A30;
}



/* Text Note */
.note-textarea {
   width: 100%;
   border-radius: 10px;
   border: 1px solid var(--textnote);
   padding: 10px;
}

.note-title-input {
   border: 0;
   width: 100%;
   font-size: 18px;
   font-weight: 600;
}


/* Audio Note */
.note-audio {
   margin-top: 40px;
}

.audio-info {
   font-size: 18px;
   color: var(--blackcolor);
   font-weight: 600;
   margin-top: 30px;
}

.audio-info img {
   width: 160px;
   margin-top: 22px;
}


/* Drawing Note */
.note-drawing {
   margin-top: 40px;
}

.note-drawing img { width: 320px; }


/* Image Note */
.note-image {
   margin-top: 40px;
}

.note-image img { width: 450px; }

#fileInput { display: none; }

.upload-btn {
   border-radius: 99px;
   background: #050A30;
   color: #fff;
   font-weight: 600;
   font-size: 14px;
}


/* Video Note */
.note-video {
   margin-top: 40px;
}

video {
   height: 70%;
   border-radius: 24px;
   border: 6px solid var(--videonote);
   overflow: hidden;
}

video[poster]{ object-fit: cover; }



/* Datetime picker */
.bootstrap-datetimepicker-widget table {
    text-align: center;
}
.bootstrap-datetimepicker-widget th {
    border: 1px solid #e1e1e1;
    padding: 10px;
    text-align: center;
}
.bootstrap-datetimepicker-widget tr {
    border: 1px solid #e1e1e1;
    padding: 10px;
    text-align: center;
}
.bootstrap-datetimepicker-widget td {
    border: 1px solid #e1e1e1;
    width: 10%;
    padding: 10px;
}


/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider { background-color: #2196F3; }
input:focus + .slider { box-shadow: 0 0 1px #2196F3; }
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider.round { border-radius: 44px; }
.slider.round:before { border-radius: 50%; }


/*-- @MEDIA SCREEN QUERIES --*/

/* Mobile Phone */
@media only screen and (max-width: 767px) {
   .add-note-btn { margin-left: -34px; }
   .note-drawing img { width: 95%; }
   .note-image img { width: 95%; }
   .add-note-btn { 
      width: 60px;
      height: 60px;
   }
   video { width: 95%; }

}



/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 959px) {

}


/* iPad Pro */
@media only screen and (min-width: 960px) and (max-width: 1024px) {

}