/*
* Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
*/

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
    display: block
}

/*
* Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
*/
audio, canvas, video {
    display: inline-block;
    display: inline;
    zoom: 1;
}

/*
* Prevents modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
    display: none;
    height: 0;
}

/*
* Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3, * and Safari 4.
* Known issue:no IE 6 support.
*/
[hidden] {
    display: none
}

/* ==========================================================================
Base
========================================================================== */
/*
* 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
*    `em` units.
* 2. Prevents iOS text size adjust after orientation change, without disabling
*    user zoom.
*/

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
/*
* Addresses `font-family` inconsistency between `textarea` and other form
* elements.
*/
html, button, input, select, textarea {
    font-family: sans-serif;
    font-family: 'Muli', sans-serif;
}
/*
* Font Smoothing
*/
html, html a {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
Links
========================================================================== */
/*
* Addresses `outline` inconsistency between Chrome and other browsers.
*/
a:focus {
    outline: thin dotted;
    text-decoration: none;
}

/*
* Improves readability when focused and also mouse hovered in all browsers.
*/
a:active, a:hover {
    outline: 0;
    text-decoration: none;
}


/* ==========================================================================
DASHBOARD STYLE
========================================================================== */
.dashboard_title {
  font-size: 24px;
  font-weight: 600;
  margin: 60px auto;
}

.text-center {
  text-align: center;
}

body {
  background-color: #F6F8FA;
  margin: 0;
  font-family: 'Muli', 'Helvetica', sans-serif;
  color: #4A4A4A;
}
header {
  height: 100%;
  width: 220px;
  position: fixed;
  top:0;
  left:0;
  bottom: 0;
  z-index: 100;
}
.header_content {
  height: 100%;
  width: 220px;
  position: fixed;
  top:0;
  left:0;
  bottom: 0;
  z-index: 100;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(0deg, rgba(255, 199, 133, 1), rgba(216, 105, 140, 1),rgba(131, 65, 125, 1),rgba(49, 26, 110, 1));
  background-image: linear-gradient(0deg, rgba(255, 199, 133, 1), rgba(216, 105, 140, 1),rgba(131, 65, 125, 1),rgba(49, 26, 110, 1));
}

header ul {
    margin: 0;
    padding: 0;
    top: 60px;
    transition: all 300ms ease-in-out;
}
ul li {
    list-style: none;
    padding: 10px 0;
}

ul li a {
    font-size: 16px;
    font-weight: 600;
    color: white;
}
ul li a:hover, a:active, a:focus {
    color: white;
}
.upload_video_from_nav_bar:hover {
  cursor: pointer;
}


/* OPENNING MENU AND HAMBURGUER */
.header.open {
  height: 100%;
}
.header_content.open {
  display: inline;
  opacity: 0.96;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; 
}

.navicon {
    position: absolute;
    height: 26px;
    left: 8px;
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.nav-toggle {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 999999;
    padding: 10px 35px 16px 0;
    cursor: pointer;
}

.nav-toggle:focus {
  outline: none; 
}

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 1px;
  background: #4A2672;
  box-shadow: 0px 2px 4px rgba(74, 38, 114, 0.5);
  cursor: pointer; 
}

.nav-toggle span:before {
  top: -10px; 
}

.nav-toggle span:after {
  bottom: -10px; 
}

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; 
}

.nav-toggle.active span {
  background-color: transparent; 
  box-shadow: none;
}

.nav-toggle.active span:before, .nav-toggle.active span:after {
  top: 0; 
  background: white;
  box-shadow: none;
}

.nav-toggle.active span:before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); 
}

.nav-toggle.active span:after {
  top: 10px;
  -ms-transform: translatey(-10px) rotate(-45deg);
  -webkit-transform: translatey(-10px) rotate(-45deg);
  transform: translatey(-10px) rotate(-45deg); 
}

/* ==========================================================================
Left navigation bar
========================================================================== */
.logo {
  text-align: center;
  margin: 24px auto;
}
.icon-spotter_logo:before {
  content: "\e901";
  font-family: 'icomoon';
  font-size: 30px;
  font-weight: 900;
  color: white;
}

.user_info {
  margin: 20px auto;
}
.user_info a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}
.user_first_name_letter {
  border: 1px solid white;
  width: 60px;
  height: 60px;
  text-align: center;
  margin: 10px auto;
  box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
  border-radius: 30px;
}
.user_first_name_letter p {
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
  padding: 10px 10px;
  font-size: 26px;
}
.header-nav {
  margin-top: 40px;
}

.header-nav ul li {
  padding: 20px auto;
  padding-left: 12px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.header-nav img {
  vertical-align: middle;
  width: 25px;
  height: auto;
  margin-right: 6px;
}

/* ==========================================================================
NEW VIDEO TO ANALYZE
========================================================================== */
.content_area {
  width: 100%;
  padding-left: 220px; /* Because of Side Bar */
}
.content_area .container {
  width: 100%;
  max-width: 1000px;
}
.new_video_to_analyze {
  margin: 34px 30px;
}

/*
* FIRST STEP
 */
.search_new_video_box {
  width: 100%;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
}
.first_step {
  padding: 40px 0 30px 0;
  margin: 0 auto;
  text-align: center;
}
.first_step:hover {
  cursor: pointer;
}
.first_step p {
  font-weight: 600;
  font-size: 18px;
  color: #D8698C;
}
.first_step span {
  border: 1px solid #D8698C;
  border-radius: 4px;
  padding: 10px 20px;
}
/*
* SECOND STEP
 */
.upload_video_box {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.upload_video_box .keywords_modal p {
    text-align: left;
    padding: 20px 30px;
}
.upload_video_box .keywords_modal p a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
.upload_from_computer {
  margin: 0 auto;
  height: 300px;
  width: auto;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
  background-image: linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
}
.upload_from_computer p {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #AD244F;
  margin-top: 20px;
}
.upload_from_computer h5 {
  text-align: right;
  font-weight: 600;
  font-size: 18px;
  color: white;
  width: 20px;
  float: right;
  margin-right: -14px;
  margin-top: -90px;
}
/* NEXT BUTTON */
.next_to_video_info {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #3490DB;
}
.next_to_video_info:hover {
  cursor: pointer;
  color: #2176BC;
}
.next_to_video_info.disabled, .next_to_video_info:hover.disabled{
  color: #7fbbec;
}
    

/* UPLOAD BUTTON */
.upload_video_button {
  margin-top: 120px;
}
.custom-file-input {
  visibility: hidden;
  position: relative;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.custom-file-input::before {
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  cursor: pointer;
  visibility: visible;
  position: absolute;
  display: inline-block;
  content:url(../img/upload_video.png);
    padding: 70px 120px 150px;
    margin-top: 40px;
}
.custom-file-input:hover {
  cursor: pointer;
}

.upload_from_youtube {
  height: 300px;
  /*width: auto;*/
  background-color: white;
  text-align: center;
  margin: 0 auto;
}
.upload_from_youtube h5 {
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  color: #D8698C;
  width: 20px;
  float: left;
  margin-left: -14px;
  margin-top: -26px;
}
.error {
  color: #FC0201;
  text-align: left;
  padding: 14px 24px;
}
.or_in_mobile {
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
  color: #D8698C;
  width: 20px;
  opacity: 0;
}
.icon-arrow-forward:before {
  content: "\e900";
  font-family: 'icomoon';
}
.icon-arrow-forward {
  padding-left: 4px;
  font-size: 12px;
}
.youtube_link_input {
  margin-top: 85px;
}
.youtube_link_input input {
  border: 1px solid rgba(216, 105, 140, 0.5);
  border-radius: 4px;
  height: 40px; 
  width: 330px;
  margin-left: 20px;
  padding-left: 12px;
}
.youtube_link_input input::-webkit-input-placeholder { color:rgba(216, 105, 140, 0.8); }
.youtube_link_input input:-moz-placeholder { color:rgba(216, 105, 140, 0.9); } /* firefox 19+ */
.youtube_link_input input:-ms-placeholder { color:rgba(216, 105, 140, 0.9); } /* ie */

.youtube_link_input input.valid {
    border: 1px solid #25AE88;
    transition: 0.5s border;
    outline: none;
}
.spinner {
    -webkit-animation: spinAround 500ms infinite linear;
    animation: spinAround 500ms infinite linear;
    border: 2px solid #7fbbec;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: inline-block;
    height: 14px;
    position: relative;
    width: 14px;
    margin-left: 6px;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/*
* THIRD STEP
 */
.keywords_modal {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 100;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
  background-image: linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
}
.keywords_modal p {
  color: white;
  font-size: 16px;
  margin: 20px auto;
  max-width: 600px;
}
.keywords_modal h4 {
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 4px;
  width: 200px;
  font-weight: 600;
  margin: 0 auto;
}
.keywords_modal h4:hover {
  cursor: pointer;
}

.input_video_info {
  width: 100%;
  text-align: center;
  position: relative;
}
.input_video_info p {
  text-align: left;
  padding: 20px 30px;
}
.back_to_upload_video {
  font-size: 16px;
  font-weight: 600;
  color: #3490DB;
}
.back_to_upload_video:hover {
  color: #2176BC;
}
.back_to_upload_video:hover > span {
    cursor: pointer;
}  

.input_video_info input {
  margin: 10px auto; 
  border: 1px solid rgba(216, 105, 140, 0.5);
  border-radius: 4px;
  height: 40px;
  width: 380px;
  padding-left: 12px;
}
.video_info_form .error {
    width: 380px;
    margin: 0 auto 10px;
    padding: 0;
}
.video_info_form_label {
  width: 380px;display: block;margin: 20px auto 0;text-align: left;
}

.input_video_info input.keywords {
  margin-left: 38px;
}
.input_video_info input[type="submit"] {
  border: 1px solid #D8698C;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  margin: 10px auto;
  margin-bottom: 60px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
  background-image: linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
}
.input_video_info input[type="submit"].disabled {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #d49cad;
    background-image: none;
    border: 1px solid #d49cad;
}
.video_info_form span {
  background-color: #D8698C;
  margin-left: 10px;
  padding: 4px 10px;
  color: white;
  font-weight: 600;
  border: 1px solid #D8698C;
  border-radius: 15px;
}
.video_info_form span:hover {
  cursor: pointer;
}

.input_video_info input::-webkit-input-placeholder { color:rgba(216, 105, 140, 0.8); }
.input_video_info input:-moz-placeholder { color:rgba(216, 105, 140, 0.9); } /* firefox 19+ */
.input_video_info input:-ms-placeholder { color:rgba(216, 105, 140, 0.9); } /* ie */

.icon-arrow-back:before {
  content: "\e902";
  font-family: 'icomoon';
}
.icon-arrow-back {
  padding-left: 4px;
  font-size: 12px;
}

/*
* FOURTH STEP
 */
.upload_success {
  padding-top: 40px;
  text-align: center;
  margin: 30px auto;
}

.upload_success p {
  text-align: left;
  margin: 0 auto;
  padding: 20px;
  max-width: 500px;
  font-size: 16px;
}
.upload_success span {
  color: #3CC99E;
}
.upload_success h4 {
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 40px;
  color: #3490DB;
}
.upload_success h4:hover {
  cursor: pointer;
  color: #2176BC;
}

/*
UPLOAD VIDEO LOGIC

.first_step {
  display: block;
}

.upload_video_box {
  display: none;
}

.input_video_info {
  display: none;
}

.upload_success {
  display: none;
}
 */

 
/* ==========================================================================
VIDEOS REPORTS
========================================================================== */
.video_report {
  margin: 50px 30px;
}
.video_report a {
  color: #4A4A4A;
}
.video_report_box {
  margin: 20px auto;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
}
.video_report_box:hover {
  margin-top: 21px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.5);
}

.video_report_box object {
  display: block;
  width: 69px;
  height: 68px;
}

/* ==========================================================================
EXAMPLE REPORTS
========================================================================== */
.example_reports {
  margin: 50px 30px;
  margin-bottom: 140px;
}
.example_reports p {
  font-weight: 600;
}
.example_reports span {
  color: #D8698C;
}

.example_video_report {
  margin: 30px auto;
}
.example_video_report:hover {
  cursor: pointer;
}
.example_icon_anchor {
  position: relative;
  display: inline-block; 
}
.example_icon {
  float: left;
}
.example_icon object {
  width: 80px;
  height: auto;
  pointer-events: none;
}
.example_icon object:hover {
  cursor: pointer;
}
.example_title {
  float: left;
  margin-top: 30px;
  margin-left: 14px;
}
.example_title p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(74, 38, 114, 0.5);
}

.progress_icon {
  margin-top: 20px;
}
.progress_icon object {
  width: 50px;
  height: auto;
  margin-left: 20px;
}
.video_report_box h4 {
  margin-top: -40px;
  padding-left: 20px;
  opacity: 0;
  font-size: 14px;
}

.video_report_box h2 {
  font-size: 20px;
  font-weight: 600;
}
.video_status {
  margin-top: 18px;
  text-align: right;
}
.video_status p {
  color: #4A2672;
  font-size: 14px;
  padding-right: 12px;
}

/* ==========================================================================
FEEDBACK
========================================================================== */
.feedback {
  margin: 50px auto;
}

.contact-form {
  margin: 20px auto 60px;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
  padding-bottom: 30px;
}

.contact-form h2 {
  color: #4A4A4A;
  font-weight: 600;
  font-size: 22px;
  text-align: left;
  margin-left: 20px;
  padding-top: 30px;
}

.contact-form textarea {
  margin: 20px auto;
  border: none;
  background-color: #FFF;
  color: #000;
  width: 100%;
  font-size: 16px;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
/*  max-width: 720px;*/
  width: calc(100% - 2em);
  border-bottom: 1px dashed transparent;
}
.contact-form textarea:hover {
  border-bottom: 1px dashed lightgray;
}
.contact-form textarea::-webkit-input-placeholder { color:light-gray; font-size: 16px; }
.contact-form textarea:-moz-placeholder { color:light-gray; font-size: 16px;  } /* firefox 19+ */
.contact-form textarea:-ms-placeholder { color:light-gray; font-size: 16px;  } /* ie */

.contact-form input[type=submit] {
  background-color: white;
  border: 1px solid #D8698C;
  border-radius: 4px;
  color: #D8698C;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}
.contact-form input[type=submit]:hover {
  color: rgba(216, 105, 140, 0.6);
}

/* FORM ERRORS */
.errors {
  margin-top: 14px;
  padding: 0;
  list-style-type: none;
  color: #D94F5C;
}
.errors li {
  margin-left: 20px;
  text-align: left;
  font-size: 16px;
  display: block;
  font-weight: 600;
}

.success {
  margin-top: 14px;
  padding: 0;
  list-style-type: none;
  color: #3CC99E;
}
.success li {
  margin-left: 20px;
  text-align: left;
  font-size: 16px;
  display: block;
  font-weight: 600;
}

/* ==========================================================================


DASHBOARD NO SIGN IN


========================================================================== */
.user_info {
  text-align: center;
}
.user_info img {
  width: 70px;
  height: auto;
}
.feedback_form input {
  margin: 0 auto;
}
.feedback_form input[type="email"] {
  border: 1px solid rgba(216, 105, 140, 0.5);
  border-radius: 4px;
  height: 40px; 
  margin-left: 20px;
  padding-left: 12px;
}
.feedback_form input[type="email"]::-webkit-input-placeholder { color:rgba(216, 105, 140, 0.8); }
.feedback_form input[type="email"]:-moz-placeholder { color:rgba(216, 105, 140, 0.9); } /* firefox 19+ */
.feedback_form input[type="email"]:-ms-placeholder { color:rgba(216, 105, 140, 0.9); } /* ie */

.feedback_form input[type="submit"] {
    background-color: #D8698C;
    border: 1px solid #D8698C;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
}
.feedback_form input[type="submit"]:hover {
    color: rgba(255,255,255,0.7);
}
/* ==========================================================================


DASHBOARD SELECTED VIDEO


========================================================================== */
.selected_video_content {
  margin-top: 30px;
}
.video_name_and_timestamp {
  margin-top: 30px;
}
.video_name_and_timestamp .container-object {
  width: 40px;
}
.video_name_and_timestamp object {
  display: block;
  width: 40px;
  height: auto;
}
.video_name_and_timestamp h2 {
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
  padding-left: 16px;
}
.video_name_and_timestamp p {
  font-size: 14px;
  padding-left: 16px;
}

.info {
  margin-bottom: 30px;
  padding: 10px;
  color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(90deg, rgba(52, 144, 218, 1), rgba(25, 118, 195, 1));
  background-image: linear-gradient(90deg, rgba(52, 144, 218, 1), rgba(25, 118, 195, 1));
}
.info h2 {
  font-size: 16px;
}
.info p {
  font-size: 20px;
  font-weight: 600;
}

.platforms_analyzed a {
  color: #4A4A4A;
}
.platforms_analyzed a:hover {
  color: #4A4A4A;
}
.detail object {
  margin-top: 6px;
  margin-left: 10px;
}
.detail h2 {
  font-size: 14px;
  font-weight: 500;
}
.detail p {
  font-size: 20px;
  font-weight: 600;
}

.detail-btn {
  text-align: center;
  margin-top: 20px;
}
.detail-btn p {
  border: 1px solid #BA202E;
  border-radius: 4px;
  color: #BA202E;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 0;
  max-width: 200px;
}
.facebook p {
  border: 1px solid #3A5A98;
  color: #3A5A98;
}
.qq p {
  border: 1px solid #58ad0d ;
  color: #58ad0d ;
}

.vimeo p {
  border: 1px solid #4ebbff ;
  color: #4ebbff ;
}

.twitter p{
  border: 1px solid  #4099ff ;
  color: #4099ff ;
}

.instagram p{
  border: 1px solid  #c0276d ;
  color: #c0276d ;
}

.dailymotion p{
  border: 1px solid  #0066dc ;
  color: #0066dc ;
}

.other_platforms_section {
  padding-top: 30px;
  padding-bottom: 60px
}
.other_platforms {
  max-width: 400px;
  padding: 20px 0;
}

/* ==========================================================================


DASHBOARD SELECTED PLATFORM


========================================================================== */
.selected_platform_content {
  margin-top: 30px;
}
.video_title h2 {
  font-size: 18px;
  margin-top: 10px;
}
.video_title span {
  color: #D8698C;
}

.platform_info {
  padding: 10px 30px;
  color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(90deg, rgba(52, 144, 218, 1), rgba(25, 118, 195, 1));
  background-image: linear-gradient(90deg, rgba(52, 144, 218, 1), rgba(25, 118, 195, 1));
}
.last {
  margin-bottom: 30px;
}
.platform_info h2 {
  font-size: 16px;
}
.platform_info p {
  font-size: 20px;
  font-weight: 600;
}
.platforms_analyzed {
  margin-bottom: 60px;
}
.platforms_analyzed h2 {
  padding-left: 6px;
}
.platforms_analyzed p {
  padding-left: 6px;
}
.total_views h2 {
  font-size: 14px;
  font-weight: 500;
}
.total_views p {
  font-size: 20px;
  font-weight: 600;
}

.report_row {
  border-bottom: 1px solid #D8D8D8;
  max-width: 100%;
  margin: 0 auto;
}
.stats p {
  color: #9B9B9B;
  padding-left: 12px;
  padding-top: 12px;
}

.padding-left {
  padding-left: 24px;
}

/* PROGRESS BAR */
.progress_bar_div {
  padding-top: 12px;
}
.progress_bar_div p {
  margin-top: -10px;
}
.progress {
  margin-top: 10px;
  border-radius: 0;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
.below_60 {
  background-color: #FACE57;
}
.higher_60 {
  background-color: #39CA74;
}
.below_20 {
  background-color: #E43D3D;
}

/* ==========================================================================


DASHBOARD SETTINGS


========================================================================== */
.subscription_box h4 {
  margin: 20px 0 30px 0; 
}


.change_password {
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 auto;
  max-width: 500px;
}
.change_password input {
  border: 1px solid rgba(216, 105, 140, 0.5);
  border-radius: 4px;
  height: 40px;
  width: 100%;
  min-width: 200px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.change_password input::-webkit-input-placeholder { color:rgba(216, 105, 140, 0.8); }
.change_password input:-moz-placeholder { color:rgba(216, 105, 140, 0.9); } /* firefox 19+ */
.change_password input:-ms-placeholder { color:rgba(216, 105, 140, 0.9); } /* ie */

.change_password_btn {
  border: 1px solid #D8698C;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-image: -webkit-linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
  background-image: linear-gradient(90deg, rgba(192, 69, 107, 1), rgba(216, 105, 140, 1));
}

/* ==========================================================================


SIGN UP FROM DASHBOARD  


========================================================================== */
.sign_up_form_from_dashboard {
  margin: 0 auto;
  max-width: 500px;
  padding: 10px 20px 60px 30px;
}

.sign_up_form_from_dashboard input {
  border-color: #3CC99E ;
}
.sign_up_form_from_dashboard input::-webkit-input-placeholder { color:rgba(60, 201, 158, 0.8); }
.sign_up_form_from_dashboard input:-moz-placeholder { color:rgba(60, 201, 158, 0.8); } /* firefox 19+ */
.sign_up_form_from_dashboard input:-ms-placeholder { color:rgba(60, 201, 158, 0.8); } /* ie */

.btn_spotter {
  width: 100%;
  font-weight: 600;
  background-color: #3CC99E ;
  border-color: #3CC99E ;
}
.btn_spotter:hover,.btn_spotter:active,.btn_spotter:focus {
  background-color: #3CC99E ;
  border-color: #3CC99E ;
  font-weight: 600;
}

.btn_spotter.disabled {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #8de2c8 !important;
    border-color: #8de2c8 !important;
    background-image: none;
}

/* 
 * COPIES' TAB
 *
 */
.copies_tab p {
  border-radius: 4px;
  background-color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 10px 0px;
  text-transform: uppercase;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.5);
  font-weight: 600;
  color: rgba(0,0,0,0.4);
}
.copies_tab p.selected {
  border-bottom: 4px solid #3490DA;
  background-color: rgba(255,255,255,1);
  color: black;
}
.copies_tab p:hover {
  cursor: pointer;
  background-color: rgba(255,255,255,1);
  box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  margin-top: 1px;
}

.badge {
  background-color: #FF415C;
  color: white;
  position: absolute;
  margin-top: -10px;
  padding: 4px auto;
}


.sign_in_from_side_bar {
  margin-top: 50px;
}
.sign_in_from_side_bar h3 {
  font-size: 16px;
  line-height: 26px;
}
.sign_in_from_side_bar h3 span {
  font-weight: 600;
}
.sign_in_from_side_bar a:hover {
  text-decoration: underline;
}

/* ==========================================================================
FOOTER
========================================================================== */
footer {
  background-color: #F6F8FA;
}
footer .container {
  border-top: 1px solid #F4F0F0;
}
.copyrights {
  margin: 0 auto;
  text-align: center;
  padding: 80px;
}

.copyrights p {
  font-size: 13px;
  color: #A9A9A9;
}

.copyrights p a {
  font-weight: 400;
  color: #4995E0;
}

.copyrights span.fa-heart {
  color: #FF415C;
  font-size: 15px;
  margin: 0 2px;
}

/* Animate Heart */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); 
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); 
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); 
  } 
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); 
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); 
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); 
  } 
}


.pagination>.disabled>span {
  padding: 7px 12px;
}

.tooltipped{position:relative}.tooltipped:after{position:absolute;z-index:1000000;display:none;padding:5px 8px;font:normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:rgba(0,0,0,0.8);border-radius:3px;-webkit-font-smoothing:subpixel-antialiased}.tooltipped:before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:rgba(0,0,0,0.8);pointer-events:none;content:"";border:5px solid transparent}.tooltipped:hover:before,.tooltipped:hover:after,.tooltipped:active:before,.tooltipped:active:after,.tooltipped:focus:before,.tooltipped:focus:after{display:inline-block;text-decoration:none}.tooltipped-multiline:hover:after,.tooltipped-multiline:active:after,.tooltipped-multiline:focus:after{display:table-cell}.tooltipped-s:after,.tooltipped-se:after,.tooltipped-sw:after{top:100%;right:50%;margin-top:5px}.tooltipped-s:before,.tooltipped-se:before,.tooltipped-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,0.8)}.tooltipped-se:after{right:auto;left:50%;margin-left:-15px}.tooltipped-sw:after{margin-right:-15px}.tooltipped-n:after,.tooltipped-ne:after,.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:5px}.tooltipped-n:before,.tooltipped-ne:before,.tooltipped-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,0.8)}.tooltipped-ne:after{right:auto;left:50%;margin-left:-15px}.tooltipped-nw:after{margin-right:-15px}.tooltipped-s:after,.tooltipped-n:after{-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:5px;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,0.8)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:5px;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,0.8)}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate}.tooltipped-multiline.tooltipped-s:after,.tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-w:after,.tooltipped-multiline.tooltipped-e:after{right:100%}@media screen and (min-width: 0\0){.tooltipped-multiline:after{width:250px}}.tooltipped-sticky:before,.tooltipped-sticky:after{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.fullscreen-overlay-enabled.dark-theme .tooltipped:after{color:#000;background:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before,.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before,.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before{border-bottom-color:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before,.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before,.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before{border-top-color:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before{border-right-color:rgba(255,255,255,0.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before{border-left-color:rgba(255,255,255,0.8)}


/* ==========================================================================
SHARE BUTTON
========================================================================== */
.share_button {
  position: fixed;
  bottom: 50px;
  right: 50px;
}

.share_button button {
  overflow: hidden;
  background-color: #341770;
  width: 70px;
  height: 70px;
  border: 1px solid #341770;
  border-radius: 35px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  box-shadow: 0px 2px 4px rgba(74, 38, 114, 0.5);
}
.share_button button:hover {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 300px;
  height: 70px;
  border-radius: 5px;
}

.share_button button img {
  width: 35px;
  height: auto;
}
.share_button button p {
  margin-top: 8px;
  text-align: left;
  width: 290px;
  float: left;
  padding: 4px 3px; 
  color: white;
  font-weight: 600;
  display: none;
}
.share_button button:hover > p {
  display: inline;
}
.share_button button:hover > img {
  display: none;
}

.bootstrap-tagsinput {
  margin: 10px auto;
  border: 1px solid rgba(216, 105, 140, 0.5);
  border-radius: 4px;
  width: 380px;
  padding: 12px;
  vertical-align: middle;
  cursor: text;
  display: inline-block;
  margin-left: 40px;
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 0;
  width: 100%;
  max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  color: white;
  display: inline-block;
  margin: 4px 2px;
  box-sizing: border-box;
  padding: 8px 10px;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin: 0;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* ==========================================================================
SETTINGS STYLE
========================================================================== */
.info_settings {
  background-image: -webkit-linear-gradient(90deg, rgba(210, 87, 126, 1), rgba(237, 148, 175, 1));
  background-image: linear-gradient(90deg, rgba(210, 87, 126, 1), rgba(237, 148, 175, 1));

  margin-bottom: 40px;
}

.selected_platforms {
  margin-bottom: 40px;
  padding: 0 10px;
  display:inline-block;
  text-align: center;
}

.select_platforms_button {
  margin-bottom: 40px;
}



