/**
* Template Name: Trikona
* Author: Ganesh
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: appFont;
    src: url(fonts/Poppins-Regular.otf);
}

@font-face {
    font-family: appPageHeadFont;
    src: url(fonts/frosty.regular.ttf);
}

body {
    font-family: "appFont";
    color: #444444;
    font-size:12px;
}

a {
  text-decoration: none;
  color: #ffb03b;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satisfy", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb03b;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #ffb03b;
  line-height: 0;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  /*background: rgba(26, 24, 22, 0.85);*/
  background:#fff;
  height:55px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.setup-box-btn {
  background: #ffb03b;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.setup-box-btn:hover {
  background: #ffa012;
  color: #fff;
}

@media (max-width: 992px) {
  .setup-box-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 13px;
  font-size: 13px;
  font-weight: 500;
  color: #64433B;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
  background-color:#64433B;
  text-align:center;
  border-radius:5px;
  margin:0px 5px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #FFF;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #5f5950;
}

.section-title h2 span {
  color: #ffb03b;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Setup Box
--------------------------------------------------------------*/
.setup-box .setup-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 9px;
  background: #fff;
}

.setup-box .setup-form .form-group {
    /*padding-bottom: 8px;*/
}

.setup-box .setup-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.setup-box .setup-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.setup-box .setup-form .error-message br+br {
  margin-top: 25px;
}

.setup-box .setup-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.setup-box .setup-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.setup-box .setup-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.setup-box .setup-form input,
.setup-box .setup-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.setup-box .setup-form input {
  height: 48px;
  width:100%;
}

.setup-box .setup-form textarea {
  padding: 10px 12px;
}

.setup-box .setup-form input[type=submit] {
    /*background: #994414;*/
    border: 0;
    width: 113px;
    padding: 10px 0px;
    color: #fff;
    transition: 0.4s;
    font-size: 14px;
    border-radius:8px;
}

.setup-box .setup-form input[type=submit]:hover {
  /*background: #ffa012;*/
}

.login-box{
    max-width:35% !important;
}

.profile-box {
    max-width: 40% !important;
}

.dropdown-menu {font-size:13px !important;}
.text-center {text-align:center;}
#pagecontent {
    margin-top:15px;
}

/*--------------------------------------------------------------
# Player - Start
--------------------------------------------------------------*/
#player {
    position: relative;
    z-index: 2;
    height: 140px;
    background-color: #F9BC2D;
    padding: 0px 6px;
    border-radius: 10px;
    display: flex;    
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

#player img {
    position: absolute;
    left: 15px;
    top: -25px;
    border-radius: 10px;
}

#player .player-song {
    width: 100%;
    height: 100%;
}

#player .player-song .title {
    color: #333;
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
}

#player .player-song .artist {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

#player .player-song .timestamps {
    width: calc(100% - 15px);
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #000;
}

#player .player-song .actions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#player .player-song .actions .next, #player .player-song .actions .prev {
    cursor: pointer;
}

#player .player-song .actions i {
    font-size: 32px;
    transform: translateY(2px);
    color: #000;
    transition: 0.1s;
}

#player .player-song .actions i:hover {
    color: #888888;
    transition: 0.1s;
}

progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: calc(100% - 15px);
    height: 8px;
    border-radius: 50px;
    margin-top: 19px;
}

progress[value]::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 50px;
}

progress[value]::-webkit-progress-value {
    border-radius: 50px;
    background-color: #333DDD;
}

.play-button {
    display: block;
    overflow: hidden;
    position: relative;
}

.play-button:hover .left, .play-button:hover .right {
    background-color: #888888;
}

.left {
    height: 100%;
    float: left;
    background-color: #bbbbbb;
    width: 36%;
    transition: all 0.25s ease;
    overflow: hidden;
}

.triangle-1 {
    transform: translate(0, -100%);
}

.triangle-2 {
    transform: translate(0, 100%);
}

.triangle-1,
.triangle-2 {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    width: 0;
    height: 0;
    border-right: 16px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transition: transform 0.25s ease;
}

.right {
    height: 100%;
    float: right;
    width: 36%;
    background-color: #bbbbbb;
    transition: all 0.25s ease;
}

.paused .left {
    width: 50%;
}

.paused .right {
    width: 50%;
}

.paused .triangle-1 {
    transform: translate(0, -50%);
}

.paused .triangle-2 {
    transform: translate(0, 50%);
}

#muteSec {
    height: 50px;
    padding: 7px 4px 0px 4px;
    text-align: left;
    font-size: 22px;
    color: grey;
}

input[type=range] {
    height: 25px;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    border-radius: 5px;
}

input[type=range]::-webkit-slider-thumb {
    border: 1px solid #000000;
    height: 25px;
    width: 10px;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
    margin-top: -6px;
}

#muteSec a {
    color:dimgrey !important;
}

.player-controls-circle {
    text-align: center;
    float: left;
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 100%;
    margin: 8px 8px 20px 8px; /*space between*/
    padding: 12px 19px 15px 15px;
}

.player-controls-circle.play {
    width: 70px;
    height: 70px;
    padding: 13px 13px 15px 23px;
}

.player-controls-circle.play i{
    font-size:40px !important;
}

/*--------------------------------------------------------------
# Player - End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn-style-1 {
    background: #FFF;
    width: 200px;
    border: 2px solid #994414;
    padding: 10px 0px;
    color: #994414;
    transition: 0.4s;
    font-size: 13px;
}

.btn-style-1:hover {
    color: #994414;
}

#kwwinfo {  
    margin: 0px 0px 15px 0px;
}

#kwwinfo h6 {
    margin: 15px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #BA692F;
}

#kwwinfo a {
    background: green;
    border: 0;
    padding: 9px 14px;
    color: #fff;
    transition: 0.4s;
    font-size: 13px;
    border-radius: 8px;
}
.info {
    font-size:12px;
}
.spagehead i {
    font-size: 40px;
    color: #D34F27;
}
/*--------------------------------------------------------------
# Custom Scroll bar
--------------------------------------------------------------*/
.scroll {
    overflow-y: scroll;
    height: 200px;
    width: 100%;
    padding: 6px;
}
.scroll::-webkit-scrollbar {width: 6px;}
.scroll::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(100,67,59,0.1);border-radius: 5px;background-color: #64433B;}
.scroll::-webkit-scrollbar-thumb {border-radius: 5px;-webkit-box-shadow: inset 0 0 6px #FFCB6E;background-color: #FFCB6E;}


/*--------------------------------------------------------------
# Page CSS
--------------------------------------------------------------*/
.hide{display:none;}

#bg-form {margin:20px 0px;width:78%}
#signup-form .form-floating label {font-size:14px;}
.form-floating input {font-size: 12px !important;}
.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {padding-top: 2.125rem;}
.pull-left {float:left;}
.pull-right {float: right;}
#frmLoginRememberMe {height:20px;width:unset !important;}
.select-box {border: unset;width: 90%;padding: 0.55rem;border: 1px solid #64433B;color:#64433B;border-radius:5px;appearance: none;background-image: url("../../assets/img/down-arrow.png");background-repeat: no-repeat;background-position: right 0.7rem top 50%;background-size: 0.65rem auto;}
.div-center {display: flex;align-items: center;justify-content: center;}
.input-group-text {padding:0.275rem .75rem;border-radius:0px;}
#headerbox img {border:1px solid #ccc;border-radius:5px;background-color:#fff}
#attributeList{font-size:12px;}
#tabSignIn {background-color: #fff;height: 50px;display: flex;align-items: center;justify-content: center;border-radius:0px 0px 20px 0px;cursor:pointer;font-size:13px;}
#tabSignUp {background-color: #fff;height: 50px;display: flex;align-items: center;justify-content: center;border-radius: 0px 0px 0px 20px;cursor:pointer;font-size:13px;}
#tabForgotPass {background-color: #fff;height: 50px;display: flex;align-items: center;justify-content: center;border-radius:0px 0px 20px 0px;cursor:pointer;font-size:13px;}
.tabActive{background-color:orange !important;color:#fff;}
#signInForm {padding:9px 0px 0px 0px;}
#signUpForm {padding:3px 0px 0px 0px;}
#divLogin {margin:0% 7%;}
#ForgotPassForm {padding:0px 0px 30px 0px;}
.footer {color:#fff;font-size:12px;text-align:center}
.footer a {color:unset !important;}
.form-select {border-radius:0px !important;font-size:13px !important;}
.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {padding-top:1.3rem;}
.form-floating .herr {margin-top: 31px;color: red;}
.errorMessage {color: #721c24;background-color: #f8d7da;border-color: #f5c6cb;margin: 3px 0px;border-radius: 5px;padding: 8px;font-size: 11px;}
.successMessage {color: #155724;background-color: #d4edda;border-color: #c3e6cb;margin: 3px 0px;border-radius: 5px;padding: 8px;font-size: 11px;}
.text-right {text-align:right;}
.profile-menu {background-color: #fff;color: #000;font-size: 12px;border: 1px solid #ececec;padding:5px 15px;}
#cardAttr{font-size:9px;color:gray;}

#exampleModal button {
    font-size:13px;
}
#cardTitle {
    margin:5px 0px;
}

.spagehead h4 {
    font-family: appPageHeadFont;
    font-size:27px;
}

#muteAudio i {
    font-size:20px;
}


@media (max-width: 760px) {
    .tool::after {font-size: .75em;margin-left: -5em;width: 10em;}
    .login-box {max-width:100% !important;}
    .profile-box{max-width:100% !important;}
}

/*--------------------------------------------------------------
# Responsive for mobiles
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  
}


/*--------------------------------------------------------------
# Font Colors & Size
--------------------------------------------------------------*/
.clr-blue {color: #0D1E51;}
.clr-green {color: #12553F;}
.clr-gray {color: #919191;}
.clr-brown {color: #64433B;}
.clr-white {color: #FFF;}
.clr-black {color:#000;}
.clr-yellow {color:#E8A52C;}
.sml-fnt {font-size:12px;}
.medium-fnt {font-size: 13px;}
.large-fnt {font-size: 15px;}
.e-large-fnt {font-size: 17px;}
.ee-large-fnt {font-size: 19px;}
.eee-large-fnt {font-size: 22px;}

/*--------------------------------------------------------------
# Padding and Margin 
--------------------------------------------------------------*/
.mg-t-5 {margin-top: 5px;}
.mg-t-10 {margin-top:10px;}
.mg-t-15 {margin-top: 15px;}
.mg-t-20 {margin-top: 20px;}
.mg-t-25 {margin-top: 25px;}
.mg-t-35 {margin-top: 35px;}
.mg-t-50 {margin-top: 50px;}
.mg-b-10 {margin-bottom: 10px;}
.no-padding {padding:0px !important;}
.pd-l-0 {padding-left:0px;}
.pd-r-0 {padding-right:0px;}
.pd-b-0 {padding-bottom: 0px !important;}
.pd-t-5 {padding-top: 5px;}
.pd-t-10 {padding-top: 10px;}
.pd-t-15 {padding-top: 15px;}
.pd-t-20 {padding-top: 20px;}
.pd-t-25 {padding-top: 25px;}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffb03b;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffb03b;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}