/* ======================================== */
/* Typography and primary styles */
/* ======================================== */

:root {
  --option_color: #aaa;
  --option_color_hover: #ddd;
  --color_default: coral;
}

/* Scrollbar styles */
::-webkit-scrollbar{width: 8px; height: 8px; background: #1C1E22}
::-webkit-scrollbar-thumb{background: #666;}
::-webkit-scrollbar-thumb:hover{background: #999}

* {
  margin: 0;
  padding: 0;

    -webkit-user-drag: none;
       -moz-user-drag: none;
        -ms-user-drag: none;
         -o-user-drag: none;
            user-drag: none;

            user-select: none;
         -o-user-select: none;
        -ms-user-select: none;
       -moz-user-select: none;
    -webkit-user-select: none
}

.hmf_show { display: block }

.hmf_hide { display: none }

body {
  font-family: Raleway, "Arial";
  background: #22252D
}

#hmf_full_content_wrpr {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}


/* ======================================== */
/* Tutorial/info part */
/* ======================================== */
.hmf_info_boxes_bgs {
  color: #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

.hmf_info_boxes_bgs .hmf_info_boxes_wrpr {
  background: #13161A;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  max-height: 90%;
  overflow-y: scroll;
  border-top: 4px solid coral;
  border-radius: 5px;

          transform: translate( -50%, -50% );
       -o-transform: translate( -50%, -50% );
      -ms-transform: translate( -50%, -50% );
     -moz-transform: translate( -50%, -50% );
  -webkit-transform: translate( -50%, -50% )
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_titles {
  padding: 10px 20px;
  border-bottom: 1px solid #404B55;
  /* background: #23292E */
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_titles h4 { margin: 0 }

/* --------- */

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_main {
  font-size: 14px;
  padding: 10px 20px
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_main p { text-align: left }

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_main .options_img_wrpr {
  overflow-x: scroll
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_main ul li {
  padding: 2px 10px;
  margin: 2px 0
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_main ul li:nth-child( odd ) {
  background: #22252D
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_controls {
  text-align: left;
  padding: 10px 20px;
  border-top: 1px solid #404B55;
  /* background: #23292E */
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_controls button {
  color: #efefef;
  border: 0;
  border-radius: 3px;
  padding: 3px 12px;
  outline: none;
  cursor: pointer;
  background: coral;

          transition: all .3s ease;
       -o-transition: all .3s ease;
      -ms-transition: all .3s ease;
     -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease
}

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_controls button:hover { background: #FF956C }

.hmf_info_boxes_bgs .hmf_info_boxes .hmf_info_controls .hmf_info_close_btns { float: right }

#hmf_tuts_bg #hmf_tut_num {
  color: #999;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px
}

/* ======================================== */
/* Tutorial/info part */
/* ======================================== */
#hmf_points_warning_wrpr {
  color: #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

#hmf_points_warning_wrpr #hmf_points_warning {
  background: #13161A;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 500px;
  max-height: 90%;
  overflow-y: scroll;
  border: 2px solid coral;
  border-radius: 5px;

          transform: translate( -50%, -50% );
       -o-transform: translate( -50%, -50% );
      -ms-transform: translate( -50%, -50% );
     -moz-transform: translate( -50%, -50% );
  -webkit-transform: translate( -50%, -50% )
}

#hmf_points_warning_wrpr #hmf_points_warning #hmf_points_warning_title {
  padding: 10px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: coral
}

#hmf_points_warning_wrpr #hmf_points_warning #hmf_points_warning_main {
  font-size: 14px;
  padding: 10px 20px
}

#hmf_points_warning_wrpr #hmf_points_warning #hmf_points_warning_controls {
  text-align: left;
  padding: 10px 20px;
  border-top: 1px solid #404B55
}

#hmf_points_warning_wrpr #hmf_points_warning #hmf_points_warning_controls button {
  color: #efefef;
  border: 0;
  border-radius: 3px;
  padding: 3px 12px;
  outline: none;
  cursor: pointer;
  background: coral;

          transition: all .3s ease;
       -o-transition: all .3s ease;
      -ms-transition: all .3s ease;
     -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease
}

#hmf_points_warning_wrpr #hmf_points_warning #hmf_points_warning_controls button:hover {
  background: #FF956C
}

/* ======================================== */
/* Top bar / options bar */
/* ======================================== */

#top_bar {
  font-size: 12px;
  padding: 10px 0;
  color: var( --option_color );
  background: #22252D;
  overflow-x: scroll;
}

#top_bar #hmf_logo_wrpr { padding-right: 10px }

#top_bar #hmf_logo { width: 25px }

#top_bar #top_bar_inner_container {
  width: 1355px
}

#top_bar .hmf_dynmc {
  background: #373C48;
  display: inline-block;
  width: 35px;
  margin: 0 5px;
  padding: 0px 5px;
  text-align: center;
  border-radius: 3px
}

#top_bar .hmf_option_border {
  display: inline-block;
  background: #888;
  width: 1px;
  margin: -8px 10px;
  height: 100%
}

#top_bar button {
  border: none;
  background: none;
  color: var( --option_color );
  cursor: pointer;
  outline: none;

          transition: all .2s ease;
       -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
     -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
}

#top_bar button:hover {
  color: var( --option_color_hover );
}

#top_bar button:active {
  color: var( --option_color )
}

/* --------- */

#top_bar .hmf_input_btns {
  border: 1px solid var( --option_color );
  padding: 0 5px;
  margin: 0 3px;
  border-radius: 3px
}

#top_bar label {cursor: pointer}

#top_bar .hmf_input_btns:hover, #top_bar .hmf_input_btns.active {
  color: #fff !important;
  border-color: var( --color_default );
  background: var( --color_default );
}

#top_bar .hmf_input_btns:hover, #top_bar a.hmf_input_btns {
  display: inline-block;
  cursor: pointer
}

#top_bar .hmf_input_btns:hover span, #top_bar .hmf_input_btns.active span {
  background: #fff
}

#top_bar .hmf_pth_width {
  display: inline-block;
  width: 15px;
  background: var( --option_color )
}

#top_bar #hmf_pth_thin_width {height: 2px;}

#top_bar #hmf_pth_thick_width {height: 5px;}

#top_bar #hmf_pth_thicker_width {height: 8px;}

#top_bar #hmf_shape_select {
  padding: 3px 5px;
  margin-left: 5px;
  outline: none;
  background: #22252D;
  color: var( --option_color );
  border: 1px solid var( --option_color );
  cursor: pointer;
}

#top_bar #hmf_count_btn {
  color: #fff;
  padding: 3px 10px;
  margin-left: 10px;
  border-radius: 3px;
  background: var( --color_default );
  text-transform: uppercase;
}

#top_bar #hmf_help_btn {
  color: #fff;
  margin-left: 5px;
  background: #27a0da;
  display: inline-block;
  width: 20px;
  line-height: 20px;
  border-radius: 50px;
}

#top_bar #hmf_help_btn:hover { background: #1573a1 }
/* ------------------------ */
#hmf_help_dropdown_wrpr {
  display: none;
  color: #ddd;
  text-align: center;
  font-size: 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, .9);
  z-index: 9999
}

#hmf_help_dropdown_wrpr ul { list-style: none }

#hmf_help_dropdown_wrpr ul li { margin: 10px 0 }

#hmf_help_dropdown_wrpr ul li a {
  color: coral;
  text-decoration: none;
  position: relative
}

#hmf_help_dropdown_wrpr ul li a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  height: 2px;
  background: coral;

          transition: all .2s ease;
       -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
     -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease
}

#hmf_help_dropdown_wrpr ul li a:hover::before { width: 100% }

#hmf_help_dropdown_wrpr ul li a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: coral;

          transition: all .2s ease;
       -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
     -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease
}

#hmf_help_dropdown_wrpr ul li a:hover::after { width: 100% }

#hmf_help_dropdown_wrpr #hmf_help_dropdown_close_btn {
  color: #efefef;
  font-size: 20px;
  background: coral;
  border: none;
  line-height: 40px;
  width: 40px;
  border-radius: 100px;
  cursor: pointer;
  outline: none;

  position: fixed;
  top: 30px;
  right: 40px;

          transition: all .2s ease;
       -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
     -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease
}

#hmf_help_dropdown_wrpr #hmf_help_dropdown_close_btn:hover { background: #FF5F22 }

/* ======================================== */
/* Canvas part */
/* ======================================== */
#the_canvas_wrpr {
  position: relative
}

#the_canvas_wrpr #thecanvas {
  vertical-align: middle;
  background: #22252D;
  cursor: crosshair
}

/* ---------------------- */

#the_canvas_wrpr #hmf_result_wrpr {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  color: var( --option_color );
  background: #1C1E22;
  padding: 8px 15px;
  border-left: 2px solid #363A44;

          transition: all .3s ease;
       -o-transition: all .3s ease;
      -ms-transition: all .3s ease;
     -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

#the_canvas_wrpr #hmf_result_wrpr #hmf_result_board_hide_show_btn {
  position: absolute;
  display: none;
  top: 0;
  right: 100%;
  background: #FF7F50;  /* #FF7F50 */
  border: 2px solid #ddd;
  border-right: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

#the_canvas_wrpr #hmf_result_wrpr #hmf_result_board_hide_show_btn a {
  color: #fff;
  display: inline-block
}

#hmf_result_wrpr #hmf_result_board_hide_show_btn i {
  display: inline-block;
  margin: 5px 10px
}

#the_canvas_wrpr #hmf_result_wrpr #hmf_result_inner .hmf_result_sections {
  background: #292C30;
  padding: 8px 15px;
  margin: 5px 0;
  border-bottom: 2px solid #414552
}

#the_canvas_wrpr #hmf_result_wrpr #hmf_result_inner .hmf_result_sections #hmf_result_title {
  font-size: 20px;
  text-align: center;
  margin: 0
}

#the_canvas_wrpr #hmf_result_wrpr #hmf_result_inner .hmf_result_sections h6 {
  font-size: 14px;
  margin: 0;
  position: relative;
  cursor: pointer;
}

#the_canvas_wrpr #hmf_result_wrpr #hmf_result_inner .hmf_result_sections .hmf_dynmc {
  position: absolute;
  right: 15px;
  color: #ccc;
  background: #424755;
  display: inline-block;
  margin: 0 5px;
  padding: 1px 10px;
  text-align: center;
  border-radius: 3px
}

#the_canvas_wrpr #hmf_result_wrpr .result_caret_icon {
  position: absolute;
  right: 0
}
/* --------- */
#the_canvas_wrpr .hmf_result_navs {
  padding-top: 15px;
  padding-bottom: 5px
}

#the_canvas_wrpr .hmf_result_navs > div {
  position: relative;
  background: #1C1E22;
  padding: 5px;
  border-radius: 3px
}

#the_canvas_wrpr .hmf_result_navs button {
  position: absolute;
  border: none;
  color: var( --option_color );
  background: #424755;
  outline: none;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 3px
}

#the_canvas_wrpr .hmf_result_navs button:active {
  background: #565E70
}

#the_canvas_wrpr .hmf_result_navs button:first-child {
  left: 5px
}

#the_canvas_wrpr .hmf_result_navs button:last-child {
  top: 5px;
  right: 5px
}

#the_canvas_wrpr .hmf_result_navs .hmf_nav_nums {
  color: #ccc;
  display: inline-block;
  width: 100%;
  text-align: center
}




/* ======================================== */
/* ======================================== */
/* =========== Responsive styles ===========*/
/* ======================================== */
/* ======================================== */

@media ( max-width: 767px ) {

  #the_canvas_wrpr #hmf_result_wrpr {
            transform: translateX( 100% );
         -o-transform: translateX( 100% );
        -ms-transform: translateX( 100% );
       -moz-transform: translateX( 100% );
    -webkit-transform: translateX( 100% )
  }

  #the_canvas_wrpr #hmf_result_wrpr.hmf_not_colpsd {
            transform: translateX( 0% );
         -o-transform: translateX( 0% );
        -ms-transform: translateX( 0% );
       -moz-transform: translateX( 0% );
    -webkit-transform: translateX( 0% )
  }

  #the_canvas_wrpr #hmf_result_wrpr #hmf_result_board_hide_show_btn {
    display: inline-block;
  }

}


@media ( max-width: 549px ) {
    
}













/* --- */
