@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Menu
5. Home
6. Home Search
7. Intro
8. Destinations
9. Testimonials
10. News
11. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Oswald:400,500,600,700');

/*********************************
2. Body and some general stuff
*********************************/


* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
  /* font-family: 'Open Sans', sans-serif; */
  /*font-size: 14px;
	font-weight: 400;*/
}

div {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 20px;
}

p {
  /* font-family: 'Open Sans', sans-serif; */
  font-size: 14px;
  line-height: 1.9285;
  font-weight: 400;
  /*color: rgba(255, 255, 255, .90);*/
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
  display: inline;
  position: relative;
  color: inherit;
  border-bottom: solid 1px #e5ffd4;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

p:last-of-type {
  margin-bottom: 0;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
  /*position: relative;
	color: rgba(255, 255, 255, 0.80);*/
}

p a:hover {
  /*color: #FFFFFF;
	background: rgba(255, 255, 255, .1);*/
}

p a:hover::after {
  opacity: 0.2;
}

::selection {
  /*color: #FFFFFF;*/
  background: rgba(214, 214, 255, 0.726);
}

p::selection {
  color: rgba(19, 18, 18, 0.404);
  background: rgba(255, 255, 255, .1);
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h1,
h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  color: rgb(71, 67, 67)
}

h3,
h4,
h5,
h6 {
  /* font-family: 'Open Sans', sans-serif;*/
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  color: rgb(71, 67, 67)
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {}

.super_container {
  width: 100%;
  /*min-height: 100vh;*/
  overflow: hidden;
}

canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.hide {
  display: none;
}

/***********
2. Menu
***********/



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2001;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.base_title {
  height: 85px;
  padding: 10px;
  padding-left: 50px;
  background-color: #fcfcfcf5;
  z-index: 2005;
}

.topnav {
  position: relative;
  /* Set the navbar to fixed position */
  /* top: 0; /* Position the navbar at the top of the page */
  width: 100vw;
  /* Full width */
  background-color: rgba(80, 80, 80, 0.836);
  /* overflow: hidden; */
  height: 54px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: rgb(224, 224, 224);
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: rgb(121, 121, 121);
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

.main_nav {
  margin-left: 0px;
}

.main_nav ul li {
  position: relative;
}

.main_nav ul li::after {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -104px;
  width: 2px;
  height: 0px;
  background: #FFFFFF;
  content: '';
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.main_nav ul li.active::after,
.main_nav ul li:hover::after {
  height: 100px;
  visibility: visible;
  opacity: 1;
}

.main_nav ul li:not(:last-child) {
  margin-right: 54px;
}

.main_nav ul li a {
  /* font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 400; */
  color: #FFFFFF;
  white-space: nowrap;
}

.dropdown-menu-btn {
  color: #FFFFFF;
  white-space: nowrap;
}

.dropdown-item {
  color: #000000;
}

.dropdown-menu {
  color: #000000;
}



.block_content {
  height: 100vh;
  background: #FFFFFF;

}

.header_space {
  height: 140px;
}

/*********************************
3. Menu
*********************************/

.menu {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  -webkit-transition: all 1000ms cubic-bezier(.18, .43, .59, .92);
  -moz-transition: all 1000ms cubic-bezier(.18, .43, .59, .92);
  -ms-transition: all 1000ms cubic-bezier(.18, .43, .59, .92);
  -o-transition: all 1000ms cubic-bezier(.18, .43, .59, .92);
  transition: all 500ms cubic-bezier(.84, .38, .6, .85);
  z-index: 2002;
}

.menu.active {
  left: 0;
}

.menu_header {
  width: 100%;
  height: 148px;
  padding-left: 60px;
  padding-right: 60px;
  color: #d8d8d8;
}

.menu_logo a {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #ffffffc5;
  line-height: 0.75;
}

.menu_logo a img {
  height: auto;
  width: auto;
  max-height: 100px;
  max-width: 100px;

}

.menu_close_container {
  width: 18px;
  height: 18px;
  transform-origin: center center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
}

.menu_close {

  width: 100%;
  height: 100%;
  transform-style: preserve-3D;
}

.menu_close div {

  width: 100%;
  height: 2px;
  background: #ffffffc5;
  top: 8px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_close div:last-of-type {
  -webkit-transform: rotate(90deg) translateX(-2px);
  -moz-transform: rotate(90deg) translateX(-2px);
  -ms-transform: rotate(90deg) translateX(-2px);
  -o-transform: rotate(90deg) translateX(-2px);
  transform: rotate(90deg) translateX(-2px);
  transform-origin: center;
}

.menu_close:hover div {
  background: rgba(255, 255, 255, 1);
}

.menu_content {
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.menu_content ul li a {
  font-size: 48px;
  font-weight: 500;
  color: #ffffffc5;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_content ul li a:hover {
  color: rgba(255, 255, 255, 1);
}

.menu_social {
  position: absolute;
  left: 60px;
  bottom: 30px;
}

.menu_phone {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffffc5;
  margin-bottom: 10px;
}

.menu_social ul li:not(:last-child) {
  margin-right: 32px;
}

.menu_social ul li a i {
  font-size: 14px;
  color: #ffffffc5;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_social ul li a i:hover {
  color: rgba(255, 255, 255, 1);
}

/******************************
2. Home
*******************************/
/*
.home{
  width: 100%;
  top: 100px;
  height: 80vh;
  background: rgb(255, 255, 255);
  margin: auto;
	padding: 1%;
}
*/
.home_title {
  /*background: rgba(0, 0, 0, 0.096);*/

  padding-top: 100px;
  padding-bottom: 100px;
  width: auto;
  text-align: center;
}

.hamburger {
  padding: 15px;
  display: none;
}

.hamburger i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.hamburger:hover i {
  color: rgba(255, 255, 255, 1);
}

.stream_title {
  /*background: rgba(0, 0, 0, 0.096);*/

  padding-top: 50px;
  padding-bottom: 0px;
  width: auto;
  text-align: center;
}

.stream_outer {
  text-align: center;
  /*background: rgba(0, 0, 0, 0.096);*/
  background-color: rgba(12, 16, 66, 0.048);
  border-color: rgba(0, 0, 0, 0.20);
  border-style: solid;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
  width: auto;

}

.audio_stream_outer {
  /*display:inline-block;*/
  text-align: center;
  /*background: rgba(0, 0, 0, 0.096);*/
  background-color: rgba(12, 16, 66, 0.048);
  border-color: rgba(0, 0, 0, 0.20);
  border-style: solid;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 20px;
  margin-bottom: 50px;
  width: auto;

}

.notify-card {
  width: 100%;
}

.audio_stream_card {


  margin-top: 20px;
  margin-left: 0px;
  margin-right: 20px;
  min-width: 350px;

}

.home-apps {
  /*background: rgba(27, 25, 25, 0.267);*/

  /*position: relative;*/
}

.card-apps {
  /*background: rgba(26, 24, 24, 0.192);*/
  width: auto;
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 50px;

}

.eco-calendar-container {
  height: 80vh;
}

.trader-draw-container {
  margin-left: 2%;
  margin-right: 2%;
}

.account-values {
  margin-top: 5px;
}

.card-draws {
  /*background: rgba(26, 24, 24, 0.192);*/
  width: auto;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 50px;
  margin-top: 10px;

}

.summary-card {
  height: 400px;
}

.summary-body {
  overflow-y: scroll;
}

.summary-table {
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.bottom-space {
  height: 200px;
}

.draw-card {
  max-height: 80vh;
}

.btn-app {
  width: 200px;
  /*height: 50px;*/
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;


}

.dropdown {
  width: 250px;
  font-size: .85rem;
  margin-bottom: 40px;
}

.btn-accounts {
  font-size: .85rem;
  text-transform: capitalize;
  /* margin-bottom: 10px; */
  margin-left: 10%;
  margin-right: 10%;
  padding: 0px 0px 0px 0px;
  text-align: center;
  width: 80%;
  height: 30px;
  /* margin-top: 30px; */
}

.btn-process {
  margin-top: 30px;
  background-color: rgb(68, 55, 167);
  border-color: rgb(255, 255, 255);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24), 0 5px 15px 0 rgba(0, 0, 0, 0.19);
  /*box-shadow: 0 0 0 0.0rem  rgba(97, 97, 97, .5);*/
  color: rgb(255, 255, 255);
  width: 60%;
  border-radius: 5px;

}

.btn-process:hover {
  background-color: rgb(68, 55, 167);
  border-color: rgb(255, 255, 255);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.24), 0 5px 15px 0 rgba(0, 0, 0, 0.19);
  color: rgb(255, 255, 255);
}

/* .btn-process:focus, .btn-accounts.focus {
  background-color:rgb(68, 55, 167);
  border-color:  rgb(255, 255, 255);
  box-shadow: 0 0 0 0.0rem  rgba(97, 97, 97, .5);
  color: rgb(255, 255, 255);
} */

.btn-process:active {
  background-color: rgb(68, 55, 167);
  border-color: rgb(255, 255, 255);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.24), 0 2px 6px 0 rgba(0, 0, 0, 0.19);
  color: rgb(255, 255, 255);
  transform: translateX(2px) translateY(4px);
}


.btn-selector {
  background-color: rgb(255, 255, 255);
  border-color: rgb(92, 92, 92);
  box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, .5);
  color: rgb(97, 97, 97);
}

.btn-process.disabled,
.btn-accounts:disabled {
  background-color: rgb(68, 55, 167);
  border-color: rgb(255, 255, 255);
  box-shadow: 0 0 0 0.0rem rgba(97, 97, 97, .5);
  color: rgb(255, 255, 255);
}

.btn-selector:hover {
  background-color: rgb(255, 255, 255);
  border-color: rgb(92, 92, 92);
  box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, .5);
  color: rgb(97, 97, 97);
}

.btn-selector:focus,
.btn-accounts.focus {
  background-color: rgb(255, 255, 255);
  border-color: rgb(92, 92, 92);
  box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, .5);
  color: rgb(97, 97, 97);
}

.btn-selector.disabled,
.btn-accounts:disabled {
  background-color: rgb(255, 255, 255);
  border-color: rgb(92, 92, 92);
  box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, .5);
  color: rgb(97, 97, 97);
}



.messages-area {
  background-color: rgba(255, 255, 255, .1);
  padding-top: 0px;
  margin-top: 150px;
  margin-left: 50px;
  margin-right: 50px;
  text-align: center;
}

.tasksLoadingMessage {
  margin-top: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loadingMessage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rptLoadingMessage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#tradesLoadingMessage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ana_period_select {
  width: 90%;
}

.isDisabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.isDisabled>a {
  color: currentColor;
  display: inline-block;
  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}

td.details-control {

  /* font-family: 'FontAwesome';
  content: "<i class='fa fa-chevron-right' aria-hidden='true'></i>";
  color: black; 
  background: url('/static/img/chevron-right25.png') no-repeat center center;
  */
  cursor: pointer;
}

/* tr.shown td.details-control {
  color: black;
  font-family: 'FontAwesome';
  content: "<i class='fa fa-chevron-down' aria-hidden='true'></i>";
  background: url('/static/img/chevron-down25.png') no-repeat center center;
} */

.analytics-menu-breaker {
  margin-top: 300px;
}


/*********************
4. Market Data
**********************/

.market_data {
  /* width: 100%;
  top: 150px;
  background: rgb(255, 255, 255);
  margin: auto; */
  padding: 1%;

}

/* ENABLD / DISABLE TOGGLE SWITCH */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.manyCheckboxInput {
  max-height: 150px;
  height: 150px;
}

/* The slider */
.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);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/**************************
  3. Login
  ***************************/
.login-box {
  width: 100%;

}

.login-card {

  max-width: 650px;
  min-height: 300px;
  margin: 20px 20px;

}

/**************************
  8. ALERT AREA 
  ***************************/


.alert-area {
  max-height: 100%;
  position: fixed;
  bottom: 5px;
  left: 20px;
  right: 20px;
  z-index: 1000;
}

.alert-box {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.9);
  line-height: 1.3em;
  padding: 10px 25px 10px 15px;
  margin: 5px 10px;
  position: relative;
  border-radius: 5px;
  transition: opacity 0.5s ease-in;

}

.alert-box.hide {
  opacity: 0;
}

.alert-close {
  background: transparent;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.alert-close:before,
.alert-close:after {
  content: '';
  width: 15px;
  border-top: solid 2px white;
  position: absolute;
  top: 5px;
  right: -1px;
  display: block;
}

.alert-close:before {
  transform: rotate(45deg);
}

.alert-close:after {
  transform: rotate(135deg);
}

.alert-close:hover:before,
.alert-close:hover:after {
  border-top: solid 2px #d8d8d8;
}




.alert-message-container {
  text-align: center;
  line-height: 2.5em;
  margin-top: 50px;
}

.alert-message-box {
  font-size: 20px;
  width: 300px;
  border: solid 1px #444;
  padding: 10px 15px;
  outline: none;
  transition: box-shadow 0.1s;
}

.alert-message-box:focus {
  box-shadow: 0 0 15px 2px #888;
}


/**************************
  8. NOTIFY AREA 
  ***************************/
.notifications-admin-box {
  width: 100%;
}

.notify-admin-block {

  margin-left: 0px;
  margin-right: 18px;

  transition: opacity 0.5s ease-in;

}

/*####### NOTIFIY top alerts ########*/
.notify-block {

  margin-left: 0px;
  margin-right: 18px;

  transition: opacity 0.5s ease-in;

}

.notify-area {
  max-height: 20%;
  position: fixed;
  top: 5px;

  /*right: 20px;*/
  z-index: 2147483647;
}


.notify_textarea {
  /* height: 163px; */
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.custom-checkbox input[type="checkbox"],
.custom-checkbox .checked {
  display: none;
}

.custom-checkbox input[type="checkbox"]:checked~.checked {
  display: inline-block;
}

.custom-checkbox input[type="checkbox"]:checked~.unchecked {
  display: none;
}

/**************************
  9. TASKS AREA 
  ***************************/
.tasks-content-wrapper {
  margin-top: 20px;
}