Advertisement
Guest User

Untitled

a guest
Aug 14th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 79.05 KB | None | 0 0
  1. @import "vars"
  2. @import "fonts"
  3. @import "libs"
  4. @import "style-formUI"
  5.  
  6. ::placeholder
  7.   color: #666
  8.  
  9. ::selection
  10.   background-color: $accent
  11.   color: #fff
  12.  
  13. html, body
  14.   display: flex
  15.   visibility: hidden
  16.  
  17. ul
  18.   list-style: none
  19.   list-style-type: none
  20.   list-style-image: none
  21.   padding: 0
  22.   margin: 0
  23.  
  24. pre
  25.   margin: 0
  26.   padding: 0
  27.  
  28. a:hover
  29.   text-decoration: none
  30.  
  31. button
  32.   border: none
  33.  
  34. button:focus
  35.   outline: none
  36.  
  37. a
  38.   &:hover
  39.     color: white
  40.   &:focus
  41.     outline: none
  42.  
  43. input::-ms-clear
  44.   display: none
  45.  
  46.  
  47. body
  48.   font-size: 16px
  49.   min-width: 320px
  50.   font-family: $default-font
  51.   overflow-x: hidden
  52.   min-height: 100vh
  53.   display: flex
  54.   width: 100%
  55.   flex-direction: column
  56.   input, textarea
  57.     outline: none
  58.     -webkit-appearance: none
  59.     border-radius: 0
  60.     &:focus:required:invalid
  61.       border-color: red
  62.     &:required:valid
  63.       border-color: green
  64.  
  65.  
  66. main
  67.   flex-grow: 1
  68.   height: 100%
  69.  
  70.  
  71. // ALERT STYLE OPEN
  72. body
  73.   .iziModal
  74.     .iziModal-header
  75.       .iziModal-header-title, .iziModal-header-subtitle
  76.         white-space: normal
  77.         text-outline: none
  78. // ALERT STYLE CLOSE
  79.  
  80. .mm-page
  81.   position: static
  82.  
  83. .link-beta
  84.   color: #525252 !important
  85.   cursor: default !important
  86.  
  87. .img-responsive
  88.   display: block
  89.   max-width: 100%
  90.   height: auto
  91.  
  92. .text-center
  93.   text-align: center
  94.  
  95. .wrap-button-center
  96.   text-align: center
  97.  
  98. .hidden
  99.   display: none
  100.  
  101. .style-error-message
  102.   color: #e74c3c
  103.  
  104.  
  105. .default-link
  106.   color: $blue-hue
  107.   transition: .25s ease
  108.   &:hover
  109.     color: lighten($blue-hue, 10%)
  110.   &:active
  111.     color: darken($blue-hue, 10%)
  112. .link-message-alert
  113.   color: $color-white
  114.   transition: .25s ease
  115.   &:hover
  116.     color: #c4c4c4
  117.   &:active
  118.     color: darken($color-white, 10%)
  119.  
  120. .link-blank-profile-content
  121.   color: #6b6b6b
  122.   transition: .25s ease
  123.   font-family: $light-font
  124.   position: relative
  125.   padding-left: 20px
  126.   &:hover
  127.     color: $blue-hue
  128.     display: inline-block
  129.   .svg-inline--fa
  130.     position: absolute
  131.     top: 50%
  132.     left: 0
  133.     transform: translateY(-50%)
  134.  
  135. //MENU USER PROFILE
  136. .menu-profile-user
  137.   position: relative
  138.   cursor: pointer
  139.   transition: all 0.3s
  140.   display: inline-block
  141.   width: 180px
  142.   .main-user-info
  143.     .img-menu-user
  144.       position: relative
  145.       display: inline-block
  146.       background-size: cover
  147.       background-repeat: no-repeat
  148.       background-position: center center
  149.       width: 40px
  150.       height: 40px
  151.       float: left
  152.       margin-right: 10px
  153.       .svg-inline--fa
  154.         &.unknown-user
  155.           font-size: 35px
  156.           position: absolute
  157.           left: 0
  158.           top: 50%
  159.           transform: translateY(-50%)
  160.           margin: 0
  161.     .wrap-user-info
  162.       @include clearfix
  163.       display: inline-block
  164.       margin-top: -5px
  165.       p
  166.         font-size: 15px
  167.         margin-bottom: 0
  168.         overflow: hidden
  169.         text-overflow: ellipsis
  170.         white-space: nowrap
  171.         width: 110px
  172.         &:last-child
  173.           font-family: $light-font
  174.     .svg-inline--fa
  175.       margin-top: 11px
  176.       float: right
  177.  
  178.   .extend-user-info
  179.     position: absolute
  180.     z-index: 500
  181.     max-height: 0
  182.     width: 100%
  183.     opacity: 0
  184.     overflow: hidden
  185.     transition: all 0.3s
  186.     background: white
  187.     box-shadow: inset 0 0px #098bd1, 0 2px 8px rgba(0,84,186,0.4)
  188.     padding: 10px
  189.     li
  190.       margin-bottom: 7px
  191.       a
  192.         color: $blue-hue
  193.         font-size: 13px
  194.         transition: .25s ease
  195.       &:last-child
  196.         text-align: center
  197.       &:hover a
  198.         color: $color-orange
  199.       a.filled-button
  200.         color: $color-white
  201.     &.open
  202.       opacity: 1
  203.       max-height: 430px
  204.       margin-top: 0px
  205.  
  206. .filled-button
  207.   display: inline-block
  208.   background-color: $color-orange
  209.   color: $color-white
  210.   padding: 5px 20px 3px 20px
  211.   cursor: pointer
  212.   transition: .25s ease
  213.   box-shadow: darken($color-orange, 10%) 0 3px 0 0
  214.   border: 3px solid $color-orange
  215.   &:hover
  216.     background-color: darken($color-orange, 10%)
  217.     border: 3px solid darken($color-orange, 10%)
  218.     box-shadow: darken($color-orange, 0%) 0 3px 0 0
  219.   &:active
  220.     background-color: darken($color-orange, 15%)
  221.     border: 3px solid darken($color-orange, 15%)
  222.  
  223.  
  224. .unfilled-button
  225.   display: inline-block
  226.   background-color: transparent
  227.   color: $color-white
  228.   padding: 5px 20px 3px 20px
  229.   cursor: pointer
  230.   transition: .25s ease
  231.   border: 3px solid $color-orange
  232.   &:hover
  233.     background-color: $color-orange
  234.   &:active
  235.     background-color: darken($color-orange, 15%)
  236.     border: 3px solid darken($color-orange, 15%)
  237.  
  238. .inaccessible-button
  239.   display: inline-block
  240.   background-color: #e1e1e1
  241.   color: #525252
  242.   padding: 3px 20px
  243.   cursor: pointer
  244.   transition: .25s ease
  245.   box-shadow: darken($color-orange, 10%) 0 3px 0 0
  246.   border: 3px solid $color-orange
  247.   pointer-events: none
  248.   &:hover
  249.     color: #525252
  250.     cursor: default!important
  251.  
  252. .style-mini-remove-btn
  253.   background-color: #e74c3c
  254.   color: $color-white
  255.   transition: .25s ease
  256.   cursor: pointer
  257.   &:hover
  258.     background-color: lighten(#e74c3c, 10%)
  259.   &:active
  260.     background-color: darken(#e74c3c, 20%)
  261.  
  262.  
  263.  
  264. .select-style
  265.   border: 2px solid $color-orange
  266.   outline: none
  267.   border-radius: 3px
  268.   padding: 0 5px
  269.  
  270. .label-date-input
  271.   .call-popup
  272.     position: relative
  273.     display: block
  274.     .style-datepicker
  275.       &:focus ~ .svg-inline--fa
  276.         color: $color-orange
  277.     .svg-inline--fa
  278.       position: absolute
  279.       transition: .25s ease
  280.       color: #525252
  281.       font-size: 16px
  282.       top: 50%
  283.       right: 3%
  284.       transform: translateY(-50%)
  285.       color: $color-orange
  286.  
  287.  
  288. .style-field-required
  289.   border: 2px solid #e74c3c !important
  290.   box-shadow: none !important
  291.  
  292. .input-style-default
  293.   padding: 5px 10px
  294.   width: 100%
  295.   border: none
  296.   transition: .25s ease
  297.   box-shadow: 0px 0px 2px $blue-hue
  298.   font-family: $light-font
  299.   &:hover
  300.     box-shadow: 0px 0px 2px $color-orange
  301.   &:focus
  302.     box-shadow: 0px 0px 2px $color-orange
  303.  
  304. .textarea-default
  305.   border: none
  306.   padding: 5px 10px
  307.   transition: .25s ease
  308.   box-shadow: 0px 0px 2px $blue-hue
  309.   font-family: $light-font
  310.   width: 100%
  311.   &:hover
  312.     box-shadow: 0px 0px 2px $color-orange
  313.   &:focus
  314.     box-shadow: 0px 0px 2px $color-orange
  315.  
  316. .input-with-icon
  317.   position: relative
  318.   .svg-inline--fa
  319.     position: absolute
  320.     top: 50%
  321.     right: 3%
  322.     font-size: 16px
  323.     color: $color-orange
  324.     transform: translateY(-50%)
  325.  
  326. #popup-datepicker
  327.   .datepicker
  328.     position: static
  329.     width: 100%
  330.     border-radius: 0
  331.     border: none
  332.     font-family: $default-font
  333.     .datepicker--pointer
  334.       display: none
  335. .combobox
  336.   visibility: hidden
  337.  
  338. .wrap-button-language-switch
  339.   position: relative
  340.   display: inline-block
  341.   height: 0
  342.   width: 35px
  343.   .button-language-switch
  344.     position: absolute
  345.     z-index: 500
  346.     top: -23px
  347.     display: inline-flex
  348.     flex-direction: column
  349.     text-transform: uppercase
  350.     height: 35px
  351.     cursor: pointer
  352.     overflow: hidden
  353.     &.open
  354.       height: auto
  355.     li
  356.       background: $color-orange
  357.       order: 2
  358.       padding: 5px 10px 5px 10px
  359.       min-height: 40px
  360.       &:hover
  361.         cursor: pointer
  362.         background: #eea634
  363.       &.active
  364.         order: 1
  365.         pointer-events: none
  366.  
  367. .required-character
  368.   color: red
  369.   font-family: $bold-font
  370.  
  371. // STYLE TABS SWITCH OPEN
  372.  
  373. .switch-type-reg-and-enter
  374.   display: block
  375.   margin-top: 25px
  376.   text-align: center
  377.   ul
  378.     display: flex
  379.     li
  380.       cursor: pointer
  381.       display: block
  382.       width: 100%
  383.       padding: 10px 15px
  384.       background-color: darken($color-white, 10%)
  385.       border-right: 1px solid darken($color-white, 20%)
  386.       border-bottom: 1px solid transparent
  387.       text-align: center
  388.       color: #525252
  389.       font-size: 16px
  390.       transition: .25s ease
  391.       .svg-inline--fa
  392.         font-size: 16px
  393.     li:not(.active)
  394.       border-bottom: 1px solid darken($color-white, 20%)
  395.       &:hover
  396.         background-color: darken($color-white, 5%)
  397.       &:active
  398.         background-color: darken($color-white, 25%)
  399.     li:last-child
  400.       border-right: none
  401.     li.active
  402.       background-color: $color-white
  403.       color: $blue-hue
  404.   .content-switch
  405.     margin-top: 10px
  406.     .content-tab
  407.       label
  408.         display: block
  409.         position: relative
  410.         .svg-inline--fa:not(.fa-check)
  411.           position: absolute
  412.           top: 3px
  413.           right: 8px
  414.           border-left: 1px solid lighten(#525252, 20%)
  415.           padding-left: 5px
  416.           font-size: 25px
  417.           height: 30px
  418.           color: lighten(#525252, 20%)
  419.           transition: .25s ease
  420.         .eyePass
  421.           .svg-inline--fa
  422.             opacity: 0
  423.             transition: .25s ease
  424.             color: #858585
  425.             right: 12%
  426.             border: none
  427.             font-size: 15px
  428.             padding: 0
  429.             cursor: pointer
  430.         .input-style-default
  431.           margin-bottom: 20px
  432.           &:focus ~ .svg-inline--fa
  433.             color: $color-orange
  434.       .wrap-checkbox-tab
  435.         text-align: left
  436.         line-height: 0
  437.         span
  438.           font-size: 13px
  439.           font-family: $light-font
  440.           vertical-align: middle
  441.       .filled-button
  442.         margin-top: 20px
  443.       .wrap-block-tab
  444.         display: block
  445.         margin-top: 10px
  446.         .link-entered-acc
  447.           font-size: 13px
  448.           font-family: $light-font
  449.           transition: .25s ease
  450.           &:hover
  451.             color: $color-orange
  452.         span
  453.           font-size: 13px
  454.           font-family: $light-font
  455.     .login-tab
  456.       .filled-button
  457.         margin-top: 0
  458.  
  459. // STYLE TABS SWITCH CLOSE
  460.  
  461.  
  462.  
  463. // MAIN PAGE OPEN
  464.  
  465. // HEADER-MENU OPEN
  466.  
  467.  
  468.  
  469. #mobile-menu
  470.   z-index: 5000
  471.   background-color: $color-white
  472.   .mm-navbars_bottom
  473.     bottom: 2%
  474.     .mobile-soc-top-menu
  475.       display: flex
  476.       justify-content: center
  477.       font-size: 30px
  478.       height: 50px
  479.       li
  480.         margin-right: 20px
  481.         &:last-child
  482.           margin-right: 0
  483.         .svg-inline--fa
  484.           color: $blue-hue
  485.  
  486. .main-head
  487.   flex-shrink: 0
  488.   .nav-top
  489.     background-color: $blue-hue
  490.     color: $color-white
  491.     padding: 10px 0
  492.     .auth-organizer-bth-menu
  493.       float: left
  494.       margin-right: 10px
  495.     &-logo
  496.       width: auto
  497.       display: block
  498.       a
  499.         display: inline-block
  500.         width: 40px
  501.         margin-right: 10px
  502.         &:last-child
  503.           margin-right: 0
  504.         img
  505.           width: 40px
  506.  
  507.     &-menu
  508.       display: flex
  509.       li
  510.         margin-right: 20px
  511.         &:last-child
  512.           margin-right: 0
  513.         a
  514.           color: $color-white
  515.           &::after
  516.             content: ''
  517.             display: block
  518.             width: 100%
  519.             height: 3px
  520.             background-color: $color-orange
  521.             transform: translateY(19px) scale(0)
  522.             transition: all 0.2s
  523.           &:hover
  524.             &::after
  525.               transform: translateY(19px) scale(1)
  526.     &-soc
  527.       display: flex
  528.       li
  529.         display: flex
  530.         justify-content: center
  531.         align-items: center
  532.         margin-right: 10px
  533.         background-color: $color-white
  534.         border-radius: 100px
  535.         width: 30px
  536.         height: 30px
  537.         transition: .25s ease
  538.         &:last-child
  539.           margin-right: 0
  540.         &:hover
  541.           background-color: darken($color-white, 20%)
  542.         &:active
  543.           background-color: darken($color-white, 30%)
  544.         a
  545.           line-height: 16px
  546.           .svg-inline--fa
  547.             color: $blue-hue
  548.             font-size: 20px
  549.     .button-menu-container
  550.       position: relative
  551.       a
  552.         margin-right: 10px
  553.         &:last-child
  554.           margin-right: 0
  555.     .hamburger
  556.       padding: 0
  557.       color: $color-white
  558.  
  559. // HEADER-MENU CLOSE
  560.  
  561. // MAIN OPEN
  562.  
  563. main
  564.   .about-service
  565.     background-size: 600px 600px
  566.     background-position: 90% 15%
  567.     background-repeat: no-repeat
  568.     height: 70vh
  569.     position: relative
  570.     .row
  571.       height: 70vh
  572.     .about-service-content
  573.       .wrap-count-event
  574.         box-shadow: 0 1px 4px rgba(0,84,186,.2)
  575.         display: inline-block
  576.         color: $color-white
  577.         margin-bottom: 20px
  578.         h1
  579.           display: block
  580.           font-size: 30px
  581.           text-transform: uppercase
  582.           background-color: $color-orange
  583.           font-family: $bold-font
  584.           margin: 0
  585.           padding: 20px
  586.         .count-block
  587.           color: #000000
  588.           padding: 20px
  589.           .wrap-list-event
  590.             font-family: $light-font
  591.             position: relative
  592.             @include clearfix
  593.             .count-event
  594.               display: inline-block
  595.               float: right
  596.               position: absolute
  597.               right: 0
  598.               top: 50%
  599.               transform: translateY(-50%)
  600.               .count-numeral
  601.                 display: inline-block
  602.                 font-size: 30px
  603.                 background-color: $blue-hue
  604.                 color: $color-white
  605.                 font-family: $light-font
  606.                 border-radius: 5px
  607.                 padding: 5px
  608.                 line-height: 30px
  609.                 box-shadow: 0 1px 4px rgba(0,84,186,.2)
  610.                 margin-right: 5px
  611.       .static-count-text
  612.         font-size: 30px
  613.         margin-bottom: 10px
  614.         display: inline-block
  615.         float: left
  616.  
  617.       .decr-service-one
  618.         font-size: 30px
  619.         color: $color-white
  620.         color: black
  621.       .decr-service-two
  622.         font-size: 25px
  623.         color: $color-white
  624.         font-family: $light-font
  625.         color: black
  626.       .mobile-button-about-service
  627.         .filled-button, .unfilled-button
  628.           display: block
  629.           margin: 0 auto
  630.           width: 250px
  631.           &:last-child
  632.             margin-top: 20px
  633.             margin-bottom: 20px
  634.  
  635.   .wrap-filter-hackathon
  636.     padding: 50px 0 100px 0
  637.     background-color: rgba(2,136,209,.15)
  638.     .favorites-banner-hackathon
  639.       position: relative
  640.       display: inline-block
  641.       margin-bottom: 40px
  642.       background-size: cover
  643.       background-position: center center
  644.       background-repeat: no-repeat
  645.       height: 200px
  646.       display: block
  647.       &:before
  648.         content: ''
  649.         top: 0
  650.         left: 0
  651.         width: 100%
  652.         height: 100%
  653.         position: absolute
  654.         background-color: $deep-blue
  655.         opacity: 0
  656.         transition: .25s ease
  657.       &:hover
  658.         &:before
  659.           opacity: 0.5
  660.           transition: .25s ease
  661.         .svg-inline--fa
  662.           opacity: 1
  663.       .svg-inline--fa
  664.         transition: .25s ease
  665.         position: absolute
  666.         top: 50%
  667.         left: 50%
  668.         margin-left: -10px
  669.         margin-top: -10px
  670.         font-size: 30px
  671.         opacity: 0
  672.         color: $color-white
  673.     .filter-hackathon
  674.       text-align: center
  675.       h2
  676.         font-size: 42px
  677.         color: $blue-hue
  678.       p
  679.         font-size: 22px
  680.         font-family: $light-font
  681.       .filter-search-hackathon
  682.         padding: 30px
  683.         background-color: $blue-hue
  684.  
  685.       .filter-search-hackathon
  686.         .custom-combobox
  687.           display: block
  688.           position: relative
  689.           .input-combobox
  690.             width: 100%
  691.             padding: 5px 10px
  692.             &:focus + .btn-show-select-combobox .svg-inline--fa
  693.               color: $color-orange
  694.           .btn-show-select-combobox
  695.             position: absolute
  696.             right: 3%
  697.             top: 50%
  698.             transform: translateY(-50%)
  699.             .svg-inline--fa
  700.               transition: .25s ease
  701.               font-size: 16px
  702.               color: $color-orange
  703.         label
  704.           display: block
  705.           margin-bottom: 20px
  706.           p
  707.             margin-bottom: 5px
  708.             color: $color-white
  709.         .filled-button
  710.           font-size: 25px
  711.  
  712.   .banner-delimiter
  713.     height: 150px
  714.     background-size: contain
  715.     background-position: center center
  716.  
  717.   .list-of-hackathon, .wrap-list-of-all-events
  718.     padding: 50px 0 20px 0
  719.     .wrap-button-more-info
  720.       margin-bottom: 20px
  721.       color: $color-white
  722.       text-align: right
  723.       padding: 7px 10px
  724.       background: $blue-hue
  725.       ul
  726.         li
  727.           display: inline-block
  728.           a
  729.             text-transform: uppercase
  730.             &:first-of-type
  731.               margin-right: 10px
  732.               color: $color-white
  733.       span
  734.         float: left
  735.         font-size: 23px
  736.  
  737.     .list-card-hackathon
  738.       margin-bottom: 25px
  739.       background-color: $color-white
  740.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  741.       position: relative
  742.       &:hover
  743.         box-shadow: 0 8px 22px rgba(0,84,184,0.2)
  744.       .tag-hack
  745.         position: absolute
  746.         z-index: 5
  747.         font-size: 15px
  748.         text-transform: uppercase
  749.         color: white
  750.         background-color: #098bd1
  751.         line-height: 24px
  752.         padding: 0 9px
  753.         top: 0
  754.         right: 10%
  755.         transform-origin: 100% 0
  756.         transform: rotate(-90deg)
  757.         -webkit-transform-origin: 100% 0
  758.         -webkit-transform: rotate(-90deg)
  759.         border-radius: 3px 0 0 3px
  760.         &:before
  761.           content: " "
  762.           position: absolute
  763.           left: -8px
  764.           border-right: 9px solid #098bd1
  765.           border-top: 12px solid transparent
  766.           border-bottom: 12px solid transparent
  767.           top: 0
  768.         &:after
  769.           content: " "
  770.           position: absolute
  771.           right: -2px
  772.           border-right: 1px solid #58b4e5
  773.           background-color: #098bd1
  774.           height: 24px
  775.           width: 3px
  776.           border-radius: 0 1px 0 0
  777.           box-shadow: 0 -3px 1px -1px #0056b8
  778.  
  779.       .wrap-hack-img
  780.         display: block
  781.         border-top: 4px solid $blue-hue
  782.         position: relative
  783.         padding-bottom: 65%
  784.         transition: all 0.3s
  785.         margin: 0
  786.         opacity: 1
  787.         .img-hack
  788.           position: absolute
  789.           width: 100%
  790.           height: 100%
  791.           z-index: 0
  792.           transition-property: padding-bottom
  793.           background-size: auto auto
  794.           background-position: center center
  795.           background-repeat: no-repeat
  796.           opacity: 1
  797.           transition: all 0.3s
  798.  
  799.       .wrap-info-hackathon
  800.         padding: 0 20px 20px 20px
  801.         color: #525252
  802.         display: block
  803.         > div:not(.list-desc-hackatho, .list-name-hackathon)
  804.           position: relative
  805.           font-size: 14px
  806.           margin-bottom: 10px
  807.           border-bottom: 1px solid #d3d3d3
  808.           padding-bottom: 10px
  809.           &:first-child
  810.             border-bottom: none
  811.             padding-bottom: 0
  812.           &:last-child
  813.             border-bottom: none
  814.           .svg-inline--fa
  815.             position: absolute
  816.             font-size: 20px
  817.             color: #525252
  818.             left: 0
  819.             top: 0
  820.           .wrap-text-info-hack
  821.             margin-left: 25px
  822.         .list-name-hackathon
  823.           border: none
  824.           font-size: 25px
  825.           text-transform: uppercase
  826.           color: $blue-hue
  827.           font-family: $bold-font
  828.           margin: 20px 0 10px 0
  829.           display: inline-block
  830.           position: relative
  831.         .wrap-list-domain-hackathon
  832.           border-bottom: none
  833.           ul
  834.             li
  835.               margin-bottom: 5px
  836.               display: inline-block
  837.               color: $color-white
  838.               text-transform: uppercase
  839.               background-color: #525252
  840.               padding: 1px 10px
  841.               font-size: 12px
  842.         .list-desc-hackathon
  843.           display: block
  844.           overflow: hidden
  845.           opacity: 0
  846.           margin: 0
  847.           line-height: 24px
  848.           transition: all 0.3s
  849.           position: relative
  850.           z-index: 1
  851.           .wrap-position-desc
  852.             display: block
  853.             position: relative
  854.             padding-bottom: 0
  855.             transition: all 0.3s
  856.             .desc-event
  857.               display: block
  858.               position: absolute
  859.               transition: all 0.3s
  860.               left: 0
  861.               width: 100%
  862.               top: 0
  863.               color: #525252
  864.               font-family: $default-font
  865.               font-size: 16px
  866.               height: 100px
  867.               overflow: hidden
  868.  
  869.       .wrap-list-hack-button
  870.         position: absolute
  871.         width: 100%
  872.         bottom: 0
  873.         height: 0
  874.         transition: all 0.3s
  875.         overflow: hidden
  876.         color: $color-white
  877.         a
  878.           float: right
  879.           width: 50%
  880.           text-align: center
  881.           border: 1px solid rgba($blue-hue, 0.3)
  882.           border-bottom: none
  883.         .unfilled-button
  884.           &:first-of-type
  885.             color: $blue-hue
  886.             border-right: none
  887.             &:hover
  888.               background-color: lighten($blue-hue, 10%)
  889.               color: $color-white
  890.             &:active
  891.               background-color: darken($blue-hue, 10%)
  892.           &:last-of-type
  893.             color: $color-orange
  894.             border-left: none
  895.             border-right: none
  896.             &:hover
  897.               color: white
  898.         &.archive-btn
  899.           .unfilled-button
  900.             width: 100%
  901.       &:hover .wrap-info-hackathon .list-desc-hackathon
  902.         opacity: 1
  903.         > .wrap-position-desc
  904.           opacity: 1
  905.           padding-bottom: 40%
  906.  
  907.       &:hover .wrap-hack-img
  908.         padding-bottom: 0
  909.         margin: 0
  910.         .img-hack
  911.           opacity: 0
  912.       &:hover .wrap-list-hack-button
  913.         height: 34px
  914.         margin-top: 7px
  915.         transition: all 0.3s
  916.  
  917.   .wrap-banner-rocket
  918.     background-attachment: fixed
  919.     background-repeat: no-repeat
  920.     background-position: center center
  921.     background-size: cover
  922.     position: relative
  923.     padding: 120px 0
  924.     &:before
  925.       content: ''
  926.       position: absolute
  927.       top: 0
  928.       left: 0
  929.       width: 100%
  930.       height: 100%
  931.       background: linear-gradient(to top, rgba(255,133,0,0.0), rgba(2,136,209,0.20))
  932.     .row
  933.       .banner-rocket-text
  934.         text-align: center
  935.         color: $color-white
  936.         p
  937.           color: $color-white
  938.           margin-bottom: 30px
  939.           font-family: $light-font
  940.           font-size: 30px
  941.         a
  942.           padding: 15px 55px
  943.           margin-right: 20px
  944.           &:last-of-type
  945.             margin-right: 0
  946.             background-color: $blue-hue
  947.             border: 3px solid $blue-hue
  948.             box-shadow: darken($blue-hue, 10%) 0 3px 0 0
  949.             &:hover
  950.               background-color: darken($blue-hue, 10%)
  951.               border: 3px solid darken($blue-hue, 10%)
  952.               box-shadow: darken($blue-hue, 0%) 0 3px 0 0
  953.             &:active
  954.               background-color: darken($blue-hue, 15%)
  955.               border: 3px solid darken($blue-hue, 15%)
  956.   .our-partners
  957.     position: relative
  958.     padding: 80px 0
  959.     h2
  960.       text-align: center
  961.       color: $blue-hue
  962.       font-size: 42px
  963.       margin-bottom: 20px
  964.     .wrap-partners-logo
  965.       img
  966.         width: 100%
  967.  
  968.   .wrap-subscribe-to-news
  969.     position: relative
  970.     background-repeat: no-repeat
  971.     background-size: cover
  972.     background-position: center
  973.     .row
  974.       &:first-child
  975.         height: 550px
  976.       .subscribe-to-news
  977.         text-align: center
  978.         h2
  979.           text-transform: uppercase
  980.           color: $color-white
  981.           font-size: 48px
  982.         p
  983.           color: $color-white
  984.           font-size: 24px
  985.           font-family: $light-font
  986.         input[type='text']
  987.           padding: 0 20px
  988.           height: 56px
  989.           width: 460px
  990.           border: none
  991.           margin-bottom: 20px
  992.       .filled-button
  993.         height: 55px
  994.         padding: 0 40px
  995.         margin-left: 20px
  996.       label.form_input_error
  997.         background-color: $blue-hue
  998.         padding: 0 5px
  999.         width: 100%
  1000.         font-size: 15px
  1001.         bottom: -4px
  1002.         color: $color-white
  1003.         border-bottom: 2px solid #c21111
  1004.     &:before
  1005.       content: ''
  1006.       position: absolute
  1007.       width: 100%
  1008.       height: 100%
  1009.       top: 0
  1010.       left: 0
  1011.       background-image: linear-gradient(to top, rgba(0,0,0,0.20), rgba(20,20,20,0.20))
  1012.  
  1013. // MAIN CLOSE
  1014.  
  1015. // FOOTER OPEN
  1016.  
  1017. footer
  1018.   background-color: $deep-blue
  1019.   padding: 50px 0
  1020.   flex-shrink: 0
  1021.   .wrap-footer-links
  1022.     .title-links-footer
  1023.       text-transform: uppercase
  1024.       color: #525252
  1025.       font-family: $bold-font
  1026.       margin-bottom: 10px
  1027.       display: inline-block
  1028.     .footer-links
  1029.       font-family: $light-font
  1030.       li
  1031.         margin-bottom: 10px
  1032.         &:last-child
  1033.           margin-bottom: 0
  1034.         &:hover a
  1035.           color: #ff8500
  1036.         a
  1037.           color: $color-white
  1038.           transition: .25s ease
  1039.           &.footer-sub-links
  1040.             font-family: $default-font
  1041.             text-decoration: underline
  1042.       &.list-info-footer
  1043.         li
  1044.           color: $color-white
  1045.       &.copyright-link
  1046.         text-align: center
  1047.         margin-top: 40px
  1048.         li
  1049.           display: inline-block
  1050.           color: $color-white
  1051.           a
  1052.             font-family: $bold-font
  1053.  
  1054.   .footer-subscribe
  1055.     .title-subscribe-footer
  1056.       text-transform: uppercase
  1057.       color: #525252
  1058.       font-family: $bold-font
  1059.       margin-bottom: 10px
  1060.       display: inline-block
  1061.     .footer-subscribe-form
  1062.       input[type="search"]
  1063.         padding: 8px 20px
  1064.       button
  1065.         background-color: #0044ff
  1066.         color: $color-white
  1067.         height: 42px
  1068.         width: 50px
  1069.         margin-left: 5px
  1070.         transition: .25s ease
  1071.         cursor: pointer
  1072.         .svg-inline--fa
  1073.           font-size: 22px
  1074.         &:hover
  1075.           background-color: #366bff
  1076.         &:active
  1077.           background-color: #0035c8
  1078.     .footer-soc-button
  1079.       display: flex
  1080.       margin-top: 20px
  1081.       li
  1082.         margin-right: 15px
  1083.         &:last-child
  1084.           margin-right: 0
  1085.         a
  1086.           color: #525252
  1087.           &:hover .svg-inline--fa
  1088.             color: #8a8a8a
  1089.           &:active .svg-inline--fa
  1090.             color: #383838
  1091.           .svg-inline--fa
  1092.             font-size: 20px
  1093.             transition: .25s ease
  1094.  
  1095. // FOOTER CLOSE
  1096.  
  1097. // MAIN PAGE CLOSE
  1098.  
  1099.  
  1100. // HACKATHON PAGE OPEN
  1101.  
  1102. main
  1103.   flex-grow: 1
  1104.   .wrap-banner-current-hackathon
  1105.     background-color: #1c2747
  1106.     position: relative
  1107.     padding-top: 30px
  1108.     &:before
  1109.       content: ''
  1110.       background-color: #fff
  1111.       position: absolute
  1112.       left: 0
  1113.       bottom: 0
  1114.       width: 100%
  1115.       height: 140px
  1116.     .wrap-banner-event
  1117.       position: relative
  1118.       height: 500px
  1119.       color: #fff
  1120.       box-shadow: 0 1px 4px rgba(0,86,184,0.2)
  1121.       > .row
  1122.         height: 100%
  1123.       .wrap-banner-event-left
  1124.         min-height: 100%
  1125.         position: relative
  1126.         background-size: cover
  1127.         background-repeat: no-repeat
  1128.         &:before
  1129.           content: ''
  1130.           position: absolute
  1131.           width: 100%
  1132.           height: 100%
  1133.           top: 0
  1134.           left: 0
  1135.           background-color: rgba(0, 0, 0, 0.19)
  1136.         .main-title-banner-left
  1137.           position: relative
  1138.           padding: 20px
  1139.           .title-current-event
  1140.             text-transform: uppercase
  1141.           .banner-hack-teg-tech
  1142.             li
  1143.               display: inline-block
  1144.               color: $color-white
  1145.               text-transform: uppercase
  1146.               background-color: $blue-hue
  1147.               padding: 1px 10px
  1148.               font-size: 20px
  1149.               margin: 20px 10px 0 0
  1150.         .wrap-bottom-info-event
  1151.           position: absolute
  1152.           bottom: 0
  1153.           width: 100%
  1154.           color: black
  1155.           .row
  1156.             .col-md-4
  1157.               &:last-child .item-info-banner-event
  1158.                 border-right: none
  1159.           .item-info-banner-event
  1160.             background-color: rgba(255, 255, 255, 0.85)
  1161.             border-right: 1px solid rgba(0, 0, 0, 0.25)
  1162.             min-height: 140px
  1163.             .wrap-icon-title
  1164.               padding: 10px
  1165.               .title-info
  1166.                 display: inline-block
  1167.                 text-transform: uppercase
  1168.                 font-family: $light-font
  1169.                 font-size: 12px
  1170.                 margin-bottom: 10px
  1171.               .info
  1172.                 font-size: 15px
  1173.               p
  1174.                 margin: 0
  1175.       .wrap-info-event-right
  1176.         position: relative
  1177.         background-color: #fff
  1178.         height: 100%
  1179.         color: $color-white
  1180.         text-align: center
  1181.         .tag-event
  1182.           position: absolute
  1183.           font-size: 15px
  1184.           text-transform: uppercase
  1185.           color: $color-white
  1186.           background-color: $blue-hue
  1187.           line-height: 24px
  1188.           padding: 0 9px
  1189.           z-index: 432423423
  1190.           top: 0
  1191.           right: 10%
  1192.           transform-origin: 100% 0
  1193.           transform: rotate(-90deg)
  1194.           border-radius: 3px 0 0 3px
  1195.           &:before
  1196.             content: " "
  1197.             position: absolute
  1198.             left: -8px
  1199.             border-right: 9px solid #098bd1
  1200.             border-top: 12px solid transparent
  1201.             border-bottom: 12px solid transparent
  1202.             top: 0
  1203.           &:after
  1204.             content: " "
  1205.             position: absolute
  1206.             right: -2px
  1207.             border-right: 1px solid #58b4e5
  1208.             background-color: #098bd1
  1209.             height: 24px
  1210.             width: 3px
  1211.             border-radius: 0 1px 0 0
  1212.             box-shadow: 0 -3px 1px -1px #0056b8
  1213.         .img-banner-hack
  1214.           display: block
  1215.           width: 100%
  1216.           height: 200px
  1217.           background-size: cover
  1218.           background-position: center
  1219.           background-repeat: no-repeat
  1220.         .title-banner-hack-timer
  1221.           color: black
  1222.           text-align: center
  1223.           text-transform: uppercase
  1224.           margin: 15px 0
  1225.           font-size: 13px
  1226.         .timer-is-over-message
  1227.           background-color: rgba(2,136,209,.15)
  1228.           padding: 20px 0
  1229.           position: relative
  1230.           text-transform: uppercase
  1231.           text-align: center
  1232.           color: #000
  1233.           .svg-inline--fa
  1234.             font-size: 30px
  1235.             margin-left: 10px
  1236.             color: $color-orange
  1237.             position: absolute
  1238.             left: 0
  1239.             top: 50%
  1240.             transform: translateY(-50%)
  1241.           &.hidden-message
  1242.             display: none
  1243.           &.show-message
  1244.             display: block
  1245.  
  1246.         .flip-clock-wrapper
  1247.           margin: 0
  1248.           font-family: $default-font
  1249.           width: auto
  1250.           text-align: center
  1251.           display: inline-block
  1252.           .flip
  1253.             width: 30px
  1254.             height: 70px
  1255.             li
  1256.               line-height: 67px
  1257.               a
  1258.                 perspective: none
  1259.                 > div
  1260.                   height: 49.4%
  1261.                 .inn
  1262.                   font-size: 30px
  1263.         .flip-clock-divider
  1264.           .flip-clock-dot
  1265.             &.top
  1266.               top: 20px
  1267.             &.bottom
  1268.               bottom: 43px
  1269.           .flip-clock-label
  1270.             right: -55px
  1271.             top: 7.5em
  1272.             text-transform: uppercase
  1273.         .flip-clock-divider.days
  1274.           .flip-clock-label
  1275.             right: -52px !important
  1276.         .filled-button
  1277.           text-transform: uppercase
  1278.           margin-top: 20px
  1279.         .contact-to-organizer-link
  1280.           margin-top: 10px
  1281.           display: inline-block
  1282.  
  1283.  
  1284.   .full-description-hack-tab
  1285.     padding-top: 60px
  1286.     padding-bottom: 20px
  1287.     .wrap-tab-switch-info-hack
  1288.       display: none
  1289.       .tab-switch-info-hack
  1290.         .icon-info-points
  1291.           width: 25px
  1292.     .soc-info-current-hack
  1293.       .soc-link-current-hack
  1294.         p
  1295.           text-transform: uppercase
  1296.         .list-of-soc-current-hack
  1297.           li
  1298.             display: inline-block
  1299.             line-height: 0
  1300.             a
  1301.               color: $blue-hue
  1302.               transition: .25s ease
  1303.               &:hover
  1304.                 color: lighten($blue-hue, 10%)
  1305.               &:active
  1306.                 color: darken($blue-hue, 10%)
  1307.               .svg-inline--fa
  1308.                 font-size: 25px
  1309.                 margin-right: 10px
  1310.     .add-calendar-current-hack
  1311.       p
  1312.         text-transform: uppercase
  1313.         margin-top: 40px
  1314.       .list-of-type-add-calendar
  1315.         li
  1316.           margin-bottom: 10px
  1317.           a
  1318.             background-color: #efefef
  1319.             display: inline-block
  1320.             padding: 10px 20px
  1321.             height: 50px
  1322.             width: 180px
  1323.             img
  1324.               width: 100%
  1325.     .organizer-current-hack-link
  1326.       p
  1327.         text-transform: uppercase
  1328.         margin-top: 40px
  1329.       .link-organizer
  1330.         display: inline-block
  1331.         width: 250px
  1332.         height: 100px
  1333.         background-size: contain
  1334.         background-position: center
  1335.         background-repeat: no-repeat
  1336.         border: 1px solid black
  1337.  
  1338.     .link-off-site-current-hack
  1339.       p
  1340.         text-transform: uppercase
  1341.         margin-top: 40px
  1342.       a
  1343.         color: $blue-hue
  1344.         transition: .25s ease
  1345.         &:hover
  1346.           color: $color-orange
  1347.     .action-current-hack
  1348.       margin-top: 40px
  1349.       color: $color-white
  1350.  
  1351. // HACKATHON PAGE CLOSE
  1352.  
  1353. // PROFILE-USER PAGE OPEN
  1354.  
  1355. main
  1356.   .wrap-user-profile
  1357.     padding-top: 20px
  1358.     background-color: rgba(9,167,253,.15)
  1359.     .row
  1360.       &.wrap-fixed
  1361.         position: relative
  1362.     .wrap-menu-profile-user
  1363.       background-color: #fff
  1364.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1365.       padding: 20px 0 20px 20px
  1366.       .list-of-menu-user-profile
  1367.         li
  1368.           margin-bottom: 10px
  1369.           position: relative
  1370.           transition: .25s ease
  1371.           cursor: pointer
  1372.           padding: 5px 0 5px 0
  1373.           &:hover
  1374.             background-color: lighten($color-orange, 40%)
  1375.           &:active
  1376.             & a
  1377.               color: darken($color-orange, 10%)
  1378.           a
  1379.             font-size: 16px
  1380.             color: $color-orange
  1381.             display: block
  1382.             padding-left: 30px
  1383.             .svg-inline--fa
  1384.               position: absolute
  1385.               left: 5px
  1386.               top: 50%
  1387.               transform: translateY(-50%)
  1388.  
  1389.  
  1390.  
  1391.     .wrap-right-user-cabinet-content
  1392.       .wrap-static-profile-user
  1393.         background-color: #fff
  1394.         box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1395.         padding: 20px
  1396.         .wrap-avatar-user
  1397.           box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1398.           .form-avatar-user-cabinet
  1399.             .wrap-label-avatar
  1400.               position: relative
  1401.               height: 250px
  1402.               .input-avatar-user
  1403.                 display: none
  1404.               .svg-inline--fa
  1405.                 position: absolute
  1406.                 bottom: 5%
  1407.                 left: 5%
  1408.                 color: $color-white
  1409.                 font-size: 25px
  1410.                 &.unknown-user
  1411.                   color: $blue-hue
  1412.                   font-size: 150px
  1413.                   position: absolute
  1414.                   top: 50%
  1415.                   transform: translateY(-50%)
  1416.                   left: 50%
  1417.                   margin-left: -75px
  1418.               .btn-select-avatar
  1419.                 display: block
  1420.                 z-index: 0
  1421.                 position: absolute
  1422.                 width: 100%
  1423.                 height: 100%
  1424.                 top: 0
  1425.                 left: 0
  1426.                 cursor: pointer
  1427.                 background-size: cover
  1428.                 background-position: center center
  1429.                 background-repeat: no-repeat
  1430.                 &:before
  1431.                   content: ''
  1432.                   top: 0
  1433.                   left: 0
  1434.                   width: 100%
  1435.                   height: 100%
  1436.                   position: absolute
  1437.                   background-color: $deep-blue
  1438.                   opacity: 0
  1439.                   transition: .25s ease
  1440.                   z-index: 5000
  1441.                 &:hover
  1442.                   &:before
  1443.                     opacity: 0.5
  1444.                     transition: .25s ease
  1445.                   .svg-inline--fa.fa-upload
  1446.                     opacity: 1
  1447.                     z-index: 55555
  1448.                 .svg-inline--fa.fa-upload
  1449.                   transition: .25s ease
  1450.                   position: absolute
  1451.                   top: 50%
  1452.                   left: 50%
  1453.                   margin-left: -10px
  1454.                   margin-top: -10px
  1455.                   font-size: 30px
  1456.                   opacity: 0
  1457.                   color: $color-white
  1458.  
  1459.             .wrap-button
  1460.               text-align: center
  1461.               padding: 10px
  1462.               background-color: #f5f5f5
  1463.               .filled-button
  1464.                 display: block
  1465.                 width: 100%
  1466.                 margin: 10px 0
  1467.                 &:last-child
  1468.                   background-color: $blue-hue
  1469.                   border: 3px solid $blue-hue
  1470.                   box-shadow: darken($blue-hue, 10%) 0 3px 0 0
  1471.                   &:hover
  1472.                     background-color: darken($blue-hue, 10%)
  1473.                     border: 3px solid darken($blue-hue, 10%)
  1474.                     box-shadow: darken($blue-hue, 0%) 0 3px 0 0
  1475.                   &:active
  1476.                     background-color: darken($blue-hue, 15%)
  1477.                     border: 3px solid darken($blue-hue, 15%)
  1478.                 &.upload-avatar-btn
  1479.  
  1480.         .wrap-base-info-user
  1481.           .mobile-menu-profile
  1482.             display: none
  1483.             .wrap-mobile-menu-user-title
  1484.               display: block
  1485.               background-color: $color-orange
  1486.               padding: 5px
  1487.               text-align: center
  1488.               color: $color-white
  1489.               font-family: $bold-font
  1490.               margin-bottom: 20px
  1491.               .svg-inline--fa
  1492.                 font-size: 20px
  1493.             .mobile-menu-user-profile
  1494.               box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1495.               padding: 10px
  1496.               margin-bottom: 20px
  1497.               &.close
  1498.                 display: none
  1499.               li
  1500.                 margin-bottom: 10px
  1501.                 position: relative
  1502.                 transition: .25s ease
  1503.                 cursor: pointer
  1504.                 padding: 5px 0 5px 0
  1505.                 &:hover
  1506.                   background-color: lighten($color-orange, 40%)
  1507.                 &:active
  1508.                   & a
  1509.                     color: darken($color-orange, 10%)
  1510.                 a
  1511.                   font-size: 16px
  1512.                   color: $color-orange
  1513.                   display: block
  1514.                   padding-left: 30px
  1515.                   .svg-inline--fa
  1516.                     position: absolute
  1517.                     left: 5px
  1518.                     top: 50%
  1519.                     transform: translateY(-50%)
  1520.  
  1521.  
  1522.           .list-of-base-info
  1523.             display: inline-block
  1524.             .name-user
  1525.               font-family: $bold-font
  1526.               color: $blue-hue
  1527.               font-size: 20px
  1528.             .status-user
  1529.               font-family: $light-font
  1530.             .id-user
  1531.               margin: 20px 0
  1532.             .info-menu-user
  1533.               display: flex
  1534.               align-items: center
  1535.               margin-bottom: 20px
  1536.               .unicorn-logo
  1537.                 width: 50px
  1538.                 margin-right: 10px
  1539.               .count-unicorn
  1540.                 font-family: $bold-font
  1541.                 color: $blue-hue
  1542.                 font-size: 20px
  1543.                 margin-right: 10px
  1544.               label
  1545.                 margin: 0
  1546.             .status-profile
  1547.               .count-percent-profile
  1548.                 span
  1549.                   font-family: $bold-font
  1550.                   color: $color-orange
  1551.               .link-status-profile-progressbar
  1552.                 display: inline-block
  1553.                 #status-profile-progressbar
  1554.                   width: 200px
  1555.                   background-color: #ededed
  1556.                   .ui-progressbar-value
  1557.                     margin: 0
  1558.                     background-color: $blue-hue
  1559.               .default-link.more-info
  1560.                 display: block
  1561.                 font-size: 14px
  1562.                 margin-bottom: 20px
  1563.               .noty-profile
  1564.                 font-family: $light-font
  1565.                 color: #7e7e7e
  1566.                 font-size: 16px
  1567.           .wrap-about-user-block
  1568.             .open-info-about-user
  1569.               width: 100%
  1570.               cursor: pointer
  1571.               background-color: rgba(2, 136, 209, 0.15)
  1572.               font-family: $light-font
  1573.               transition: .25s ease
  1574.               margin-bottom: 20px
  1575.               &:hover
  1576.                 background-color: lighten(rgba(2, 136, 209, 0.15), 10%)
  1577.               &:active
  1578.                 background-color: darken(rgba(2, 136, 209, 0.15), 10%)
  1579.             .list-of-basic-info-about-user
  1580.               &.close
  1581.                 display: none
  1582.               .item-info
  1583.                 @include clearfix
  1584.                 background-color: rgba(2, 136, 209, 0.15)
  1585.                 margin-bottom: 5px
  1586.                 padding: 0px 10px
  1587.                 .left-title-basic-info
  1588.                   float: left
  1589.                 .right-basic-info
  1590.                   float: right
  1591.                   width: 50%
  1592.                   font-family: $light-font
  1593.                   .list-of-item-self-user
  1594.                     li
  1595.                       padding: 5px
  1596.                       background-color: darken(rgba(2, 136, 209, 0.15), 10%)
  1597.                       margin: 5px
  1598.                     &.soc-list
  1599.                       a
  1600.                         display: inline-block
  1601.                         margin-right: 5px
  1602.                         border-radius: 100px
  1603.                         background-color: $color-white
  1604.                         width: 30px
  1605.                         height: 30px
  1606.                         text-align: center
  1607.                         transition: .25s ease
  1608.                         &:hover
  1609.                           background-color: #ebebeb
  1610.                         &:active
  1611.                           background-color: darken(#dcdcdc, 5%)
  1612.                         .svg-inline--fa
  1613.                           vertical-align: middle
  1614.                           color: #0288d1
  1615.                 .link-blank-profile
  1616.                   color: #6b6b6b
  1617.                   transition: .25s ease
  1618.                   &:hover
  1619.                     color: $blue-hue
  1620.                   .svg-inline--fa
  1621.                     margin-right: 10px
  1622.  
  1623.       .wrap-user-cabinet-content
  1624.         margin-bottom: 20px
  1625.         .case-panel-user-right
  1626.           background-color: #fff
  1627.           box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1628.           padding: 20px
  1629.           margin-top: 20px
  1630.           .title-panel-user-right
  1631.             font-size: 20px
  1632.             color: $blue-hue
  1633.           .wrap-our-event
  1634.             display: block
  1635.             box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1636.             transition: .25s ease
  1637.             margin-bottom: 20px
  1638.             &:hover
  1639.               box-shadow: 0 8px 24px rgba(0,84,184,0.2)
  1640.             .banner-event
  1641.               display: block
  1642.               width: 100%
  1643.               height: 200px
  1644.               background-size: cover
  1645.               background-repeat: no-repeat
  1646.               background-position: center center
  1647.             .wrap-about-event
  1648.               padding: 20px
  1649.               .name-event
  1650.                 font-size: 16px
  1651.                 color: $color-orange
  1652.                 font-family: $bold-font
  1653.               .date-event
  1654.                 color: #525252
  1655.                 font-family: $light-font
  1656.           .item-user-skill
  1657.             display: block
  1658.             line-height: 16px
  1659.             color: #fff
  1660.             padding: 10px 20px
  1661.             background-color: $blue-hue
  1662.             border-radius: 3px
  1663.             transition: .25s ease
  1664.             margin-bottom: 20px
  1665.           .add-new-skills
  1666.             color: red
  1667.             display: inline-block
  1668.             .item-user-skill
  1669.               transition: .25s ease
  1670.               &:hover
  1671.                 background-color: darken($blue-hue, 10%)
  1672.               &:active
  1673.                 background-color: lighten($blue-hue, 10%)
  1674.           .tableAccrualHistory
  1675.             thead
  1676.               background-color: $color-orange
  1677.               color: $color-white
  1678.               font-family: $bold-font
  1679.               border: 1px solid #dcdcdc
  1680.               .footable-header
  1681.                 th
  1682.                   padding: 5px
  1683.             tbody
  1684.               font-family: $light-font
  1685.               border: 1px solid #dcdcdc
  1686.               .footable-detail-row
  1687.               tr
  1688.                 &:nth-child(2n)
  1689.                   background-color: #e3e3e3
  1690.                 td
  1691.                   padding: 5px
  1692.               .footable-detail-row
  1693.                 background-color: #ffeacb!important
  1694.                 tbody
  1695.                   border: none
  1696.                   tr
  1697.                     background-color: #ffeacb
  1698.             tfoot
  1699.               .footable-paging
  1700.                 .pagination
  1701.                   color: $blue-hue
  1702.                   .footable-page
  1703.                     &.active
  1704.                       .footable-page-link
  1705.                         background-color: $blue-hue
  1706.           .wrap-button-history-accurual
  1707.             margin-top: 20px
  1708.  
  1709.           &.wrap-history-participation-cabinet
  1710.             .list-of-completed-event
  1711.               margin-top: 50px
  1712.               .wrap-completed-event
  1713.                 display: block
  1714.                 box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1715.                 transition: .25s ease
  1716.                 margin-bottom: 20px
  1717.                 &:hover
  1718.                   box-shadow: 0 8px 24px rgba(0,84,184,0.2)
  1719.                 .banner-event
  1720.                   display: block
  1721.                   width: 100%
  1722.                   height: 150px
  1723.                   -webkit-background-size: cover
  1724.                   background-size: cover
  1725.                   background-repeat: no-repeat
  1726.                   background-position: center center
  1727.                 .wrap-about-event
  1728.                   padding: 10px
  1729.                   .name-event
  1730.                     color: #ff8500
  1731.                     font-family: $bold-font
  1732.                   .date-event
  1733.                     color: #525252
  1734.                     font-family: $light-font
  1735.                   .current-poins
  1736.                     background-color: $blue-hue
  1737.                     color: $color-white
  1738.                     margin: 0
  1739.                     padding: 5px 10px
  1740.                     span
  1741.                       text-align: center
  1742.                       display: block
  1743.                       &.type-points
  1744.                       &.quantity-points
  1745.                         font-family: $light-font
  1746.           &.wrap-accrualHistory
  1747.             .send-request-for-poins
  1748.               margin-bottom: 20px
  1749.               #uploads-files
  1750.                 display: none
  1751.           &.wrap-messages-user-cabinet
  1752.             .wrap-tab-messages-user
  1753.               margin-top: 20px
  1754.               display: none
  1755.               .tableMessagesUser
  1756.                 th
  1757.                   margin: 0
  1758.                   padding: 0
  1759.                 tbody
  1760.                   tr
  1761.                     border: 1px solid  #dcdcdc
  1762.                     transition: .25s ease
  1763.                     &:hover
  1764.                       background-color: #e6e6e6
  1765.                       cursor: pointer
  1766.                     td
  1767.                       padding: 5px
  1768.                       border-right: 1px solid #dcdcdc
  1769.                       &:first-child
  1770.                         width: 80%
  1771.               .info-message
  1772.                 background-color: rgba(2,136,209,.15)
  1773.                 padding: 20px
  1774.                 text-align: center
  1775.           &.wrap-notice-user
  1776.             .list-of-notice-user
  1777.               width: 100%
  1778.               .item-notice
  1779.                 background-color: rgba(2,136,209,.15)
  1780.                 padding: 10px
  1781.                 margin-bottom: 20px
  1782.                 &:last-child
  1783.                   margin-bottom: 0
  1784.                 span
  1785.                   display: block
  1786.                   margin-bottom: 5px
  1787.                   &.user-id
  1788.                     color: $color-orange
  1789.                   &.date-notice
  1790.                     font-family: $light-font
  1791.                     font-size: 14px
  1792.                 p
  1793.                   margin: 0
  1794.             .wrap-notice-manager
  1795.               .select-menu-manager
  1796.                 display: flex
  1797.                 justify-content: space-between
  1798.                 align-items: center
  1799.                 background-color: #f6f6f6
  1800.                 padding: 5px 10px
  1801.                 margin-bottom: 20px
  1802.                 border: 1px solid #dcdcdc
  1803.               .form-select-type-notice
  1804.                 .wrap-label-field
  1805.                   .title-field
  1806.                     display: inline-block
  1807.                     margin-bottom: 10px
  1808.  
  1809.  
  1810.  
  1811. // PROFILE-USER PAGE CLOSE
  1812.  
  1813.  
  1814. // SETTINGS USER PAGE OPEN
  1815.  
  1816. main
  1817.   .wrap-settings-user
  1818.     padding: 20px
  1819.     .wrap-menu-settings-user
  1820.       background-color: #fff
  1821.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1822.       padding: 20px 0 20px 20px
  1823.       .list-of-user-settings
  1824.         li
  1825.           margin-bottom: 10px
  1826.           position: relative
  1827.           transition: .25s ease
  1828.           cursor: pointer
  1829.           padding: 5px 0 5px 0
  1830.           &:hover
  1831.             background-color: lighten($color-orange, 40%)
  1832.           &:active
  1833.             & a
  1834.               color: darken($color-orange, 10%)
  1835.           &.current-item-menu
  1836.             background-color: lighten($color-orange, 40%)
  1837.             align-self:
  1838.               color: darken($color-orange, 10%)
  1839.           a
  1840.             font-size: 16px
  1841.             color: $color-orange
  1842.             display: block
  1843.             padding-left: 30px
  1844.             .svg-inline--fa
  1845.               position: absolute
  1846.               left: 5px
  1847.               top: 50%
  1848.               transform: translateY(-50%)
  1849.     .wrap-current-edit-user
  1850.       background-color: #fff
  1851.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  1852.       padding: 20px
  1853.       .wrap-title-settings-user
  1854.         p
  1855.           color: $blue-hue
  1856.           font-family: $bold-font
  1857.           border-bottom: 1px solid #c9c9c9
  1858.           padding-bottom: 5px
  1859.       .form-settings-user
  1860.         .list-of-settings-form
  1861.           width: 300px
  1862.           display: flex
  1863.           flex-direction: column
  1864.           .form-item
  1865.             margin-bottom: 20px
  1866.             &:last-child
  1867.               margin-bottom: 0
  1868.               .btn-add-new-inputs
  1869.                 background-color: $blue-hue
  1870.                 transition: .25s ease
  1871.                 color: $color-white
  1872.                 padding: 5px 7px
  1873.                 box-shadow: darken($blue-hue, 10%) 0 3px 0 0
  1874.                 cursor: pointer
  1875.                 &:hover
  1876.                   background-color: darken($blue-hue, 5%)
  1877.                 &:active
  1878.                   background-color: lighten($blue-hue, 5%)
  1879.                 &.disabled
  1880.                   background-color: #93a3ab
  1881.                   box-shadow: rgb(119, 129, 134) 0px 3px 0px 0px
  1882.             label
  1883.               display: block
  1884.               .title-input
  1885.                 display: block
  1886.                 margin-bottom: 5px
  1887.                 color: #000
  1888.                 font-family: $light-font
  1889.             .sub-title-settings
  1890.               margin-bottom: 10px
  1891.               display: block
  1892.               color: $color-orange
  1893.               font-family: $bold-font
  1894.         input.filled-button
  1895.           margin-top: 20px
  1896.       .wrap-contact-settings-user
  1897.         .list-of-soc-settings-user
  1898.           .item-input-soc
  1899.             margin-bottom: 20px
  1900.             .title-input
  1901.               padding-left: 25px
  1902.               position: relative
  1903.               .svg-inline--fa
  1904.                 position: absolute
  1905.                 top: 50%
  1906.                 left: 0
  1907.                 transform: translateY(-50%)
  1908.                 color: $blue-hue
  1909.               &.kaggle-icon
  1910.                 img
  1911.                   width: 16px
  1912.                   position: absolute
  1913.                   top: 50%
  1914.                   left: 0
  1915.                   transform: translateY(-50%)
  1916.       .wrap-education-settings-user
  1917.         .form-item
  1918.           &.item-btn-add-new-inputs
  1919.             .wrap-new-education
  1920.               padding: 5px 10px
  1921.               background-color: rgba(2,136,209,.15)
  1922.               margin-top: 10px
  1923.               .title-new-education
  1924.                 color: $color-orange
  1925.                 margin-top: 20px
  1926.                 display: block
  1927.                 margin-bottom: 10px
  1928.                 border-bottom: 1px solid #c9c9c9
  1929.                 padding-bottom: 5px
  1930.               .list-of-input-new-education
  1931.                 .item-input-education
  1932.                   margin-bottom: 10px
  1933.               .title-input
  1934.                 display: block
  1935.                 margin-bottom: 5px
  1936.                 color: #000
  1937.                 font-family: $light-font
  1938.       .wrap-interests-settings-user
  1939.         .form-settings-user
  1940.           .wrap-select-checkbox-user
  1941.             .wrap-skills-user
  1942.               .ui-checkboxradio-label
  1943.                 width: 100%
  1944.  
  1945.  
  1946.       .wrap-competitions-settings-user
  1947.         .form-settings-user
  1948.           .wrap-select-checkbox-user
  1949.             .wrap-skills-user
  1950.               .ui-checkboxradio-label
  1951.                 width: 100%
  1952.  
  1953.       .form-dynamic-settings-user
  1954.         .list-of-dynamic-inputs
  1955.           margin-top: 20px
  1956.           .item-inputs
  1957.             position: relative
  1958.             background-color: rgba(9,167,253,.15)
  1959.             padding: 20px
  1960.             margin-bottom: 10px
  1961.             .wrap-input-dynamic
  1962.               margin-bottom: 10px
  1963.               .simply-custom-select+.ui-selectmenu-button
  1964.                 width: 100%
  1965.               .title-input
  1966.                 font-family: $light-font
  1967.                 margin-bottom: 10px
  1968.                 display: block
  1969.           .btn-remove-row-inputs
  1970.             color: $color-white
  1971.             position: absolute
  1972.             background-color: transparent
  1973.             padding: 10px 10px 0  0
  1974.             top: 0%
  1975.             right: 0%
  1976.             cursor: pointer
  1977.             .svg-inline--fa
  1978.               color: #696969
  1979.               font-size: 20px
  1980.               transition: .25s ease
  1981.             &:hover .svg-inline--fa
  1982.               color: #ff4545
  1983.             &:active .svg-inline--fa
  1984.               color: darken(#ff4545, 20%)
  1985.  
  1986. // SETTINGS USER PAGE CLOSE
  1987.  
  1988. // ALL EVENTS PAGE OPEN
  1989.  
  1990. .wrap-full-search-events
  1991.   display: flex
  1992.   flex-flow: row
  1993.   background-color: rgba(9,167,253,.15)
  1994.   padding: 20px 0
  1995.   align-items: flex-start
  1996.   .wrap-float-filter
  1997.     flex: 0 0 25%
  1998.     position: relative
  1999.     .wrap-filter-search-events
  2000.       background-color: $color-white
  2001.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2002.       margin-left: 20px
  2003.       padding: 20px
  2004.       .form-filter-search-events
  2005.         .list-of-search-fields
  2006.           .wrap-filter-field
  2007.             margin-bottom: 10px
  2008.             &:last-child
  2009.               margin-bottom: 0
  2010.             &.menu-search-events
  2011.               margin-bottom: 20px
  2012.               .item-menu
  2013.                 margin-right: 20px
  2014.                 font-size: 16px
  2015.                 font-family: $bold-font
  2016.                 &:last-child
  2017.                   margin-right: 0
  2018.                 &.active
  2019.                   color: $color-orange
  2020.                   border-bottom: 2px solid $color-orange
  2021.             .wrap-label-field
  2022.               width: 100%
  2023.               .title-field
  2024.                 display: inline-block
  2025.                 font-size: 18px
  2026.                 margin-bottom: 10px
  2027.     .filled-button
  2028.       display: block
  2029.       width: 100%
  2030.       margin-top: 10px
  2031.   .wrap-result-search-events
  2032.     flex: 1 1 auto
  2033.     .header-result-search
  2034.       position: relative
  2035.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2036.       padding: 15px 10px
  2037.       background-color: #fff
  2038.       .title-result-search-events
  2039.         font-size: 20px
  2040.         font-family: $bold-font
  2041.         color: $color-orange
  2042.       .filled-button
  2043.         position: absolute
  2044.         top: 50%
  2045.         right: 2%
  2046.         transform: translateY(-50%)
  2047.         color: $color-white
  2048.     .wrap-list-of-all-events
  2049.       padding: 20px 0 20px 0
  2050.  
  2051.  
  2052.  
  2053. // ALL EVENTS PAGE CLOSE
  2054.  
  2055.  
  2056. // CURRENT COURSE PAGE OPEN
  2057. main
  2058.   .wrap-current_curse
  2059.     background-color: rgba(9,167,253,.15)
  2060.     display: flex
  2061.     flex-flow: row
  2062.     align-items: flex-start
  2063.     padding: 15px
  2064.     .menu-list-module-left
  2065.       flex: 0 0 300px
  2066.       background-color: $color-white
  2067.       height: auto
  2068.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2069.       .course-title
  2070.         background-color: $color-orange
  2071.         color: $color-white
  2072.         .title-module
  2073.           position: relative
  2074.           display: block
  2075.           a
  2076.             display: block
  2077.             color: $color-white
  2078.             padding: 5px 10px
  2079.           .svg-inline--fa
  2080.             position: absolute
  2081.             top: 50%
  2082.             right: 3%
  2083.             transform: translateY(-50%)
  2084.  
  2085.       .list-of-lessons
  2086.         padding: 0
  2087.         background-color: $color-white
  2088.         li
  2089.           margin: 0
  2090.           border-bottom: 1px solid #ccc
  2091.           transition: .25s ease
  2092.           position: relative
  2093.           &:hover
  2094.             background-color: rgba(9,167,253,.15)
  2095.           &:active
  2096.             background-color: darken(rgba(9,167,253,.15), 10%)
  2097.           a
  2098.             padding: 10px
  2099.             display: block
  2100.           .svg-inline--fa
  2101.             position: absolute
  2102.             top: 50%
  2103.             right: 3%
  2104.             transform: translateY(-50%)
  2105.             &.fa-check-circle
  2106.               color: #9c9c9c
  2107.             &.fa-check-circle.completed
  2108.               color: #2ecc71
  2109.     .content-lesson-wrap
  2110.       margin-left: 15px
  2111.       flex: 1 1 auto
  2112.       background-color: $color-white
  2113.       box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2114.       padding: 20px 150px 20px 150px
  2115.       .title-lesson
  2116.         font-family: $bold-font
  2117.         font-size: 23px
  2118.         color: $color-white
  2119.         background-color: $blue-hue
  2120.         border-bottom: 3px solid #35475e
  2121.         padding: 5px 10px
  2122.         display: block
  2123.         margin-bottom: 20px
  2124.       .sub-title-lesson
  2125.         font-family: $bold-font
  2126.         font-size: 18px
  2127.         color: $blue-hue
  2128.         border-bottom: 1px solid #c9c9c9
  2129.         display: block
  2130.         padding-bottom: 5px
  2131.         margin-bottom: 20px
  2132.       .video-content
  2133.         width: 100%
  2134.         height: 650px
  2135.         margin: 50px auto
  2136.         border: 10px solid $blue-hue
  2137.         border-top: 20px solid $blue-hue
  2138.         display: inline-block
  2139.       .desc-lesson
  2140.         font-family: $default-font
  2141.         font-size: 16px
  2142.         margin-bottom: 20px
  2143.       .list-of-files
  2144.         margin-bottom: 20px
  2145.         border-bottom: 1px solid #c9c9c9
  2146.         padding-bottom: 20px
  2147.         .link-file
  2148.           margin-right: 10px
  2149.           font-family: $light-font
  2150.           background-color: $color-white
  2151.           padding: 5px
  2152.           text-align: center
  2153.           display: inline-block
  2154.           transition: .25s ease
  2155.           &:hover
  2156.             background-color: #ececec
  2157.             color: $blue-hue
  2158.           .svg-inline--fa
  2159.             color: #e74c3c
  2160.             font-size: 50px
  2161.             display: inline-block
  2162.           .name-file
  2163.             display: block
  2164.       .wrap-tasks-course
  2165.         .wrap-task-line
  2166.           position: relative
  2167.           margin: 20px 0
  2168.           &::after
  2169.             content: ''
  2170.             position: absolute
  2171.             width: 6px
  2172.             background-color: #eaeaea
  2173.             top: 6px
  2174.             bottom: 6px
  2175.             left: 10px
  2176.             margin-left: -3px
  2177.           .container-timeline
  2178.             padding: 10px 40px
  2179.             position: relative
  2180.             .number-question
  2181.               position: absolute
  2182.               left: -3px
  2183.               top: 20px
  2184.               text-align: center
  2185.               width: 25px
  2186.               height: 25px
  2187.               display: inline-block
  2188.               background-color: $color-white
  2189.               border: 2px solid $blue-hue
  2190.               border-radius: 50%
  2191.               z-index: 1
  2192.             &.wrap-right-content
  2193.               &::before
  2194.                 content: " "
  2195.                 height: 0
  2196.                 position: absolute
  2197.                 top: 22px
  2198.                 width: 0
  2199.                 z-index: 1
  2200.                 left: 30px
  2201.                 border: medium solid white
  2202.                 border-width: 10px 10px 10px 0
  2203.                 border-color: transparent #eaeaea transparent transparent
  2204.               .content
  2205.                 padding: 20px 30px
  2206.                 background-color: #eaeaea
  2207.                 position: relative
  2208.                 border-radius: 6px
  2209.                 .name-question
  2210.                   font-family: $bold-font
  2211.                   font-size: 18px
  2212.                   margin: 0
  2213.                   padding: 0
  2214.                 .clarification-task
  2215.                   font-size: 16px
  2216.                   font-family: $light-font
  2217.                 .wrap-filed-task
  2218.                   margin-top: 20px
  2219.                   .wrap-checkbox
  2220.                     .text-checkbox
  2221.  
  2222.  
  2223. // CURRENT COURSE PAGE CLOSE
  2224.  
  2225.  
  2226. // ADMIN PANEL ORGANIZER OPEN
  2227.  
  2228. main
  2229.   .wrap-cabinet-organizer
  2230.     position: relative
  2231.     min-height: 100vh
  2232.     .logo
  2233.       height: 44px
  2234.       padding: 10px
  2235.     .header
  2236.       position: absolute
  2237.       width: 100%
  2238.       z-index: 3
  2239.       height: 45px
  2240.       background-color: #1c2747
  2241.       border-bottom: 3px solid #2d3d51
  2242.       .logo
  2243.         height: 45px
  2244.         padding: 10px
  2245.         float: left
  2246.         display: flex
  2247.         justify-content: center
  2248.         align-items: center
  2249.         z-index: 1
  2250.         color: #fff
  2251.         .svg-inline--fa
  2252.           font-size: 26px
  2253.           margin-right: 5px
  2254.       .nav-trigger
  2255.         position: relative
  2256.         float: right
  2257.         width: 20px
  2258.         height: 45px
  2259.         right: 30px
  2260.         display: block
  2261.         span
  2262.           top: 50%
  2263.           width: 20px
  2264.           height: 2px
  2265.           background-color: #fff
  2266.           position: absolute
  2267.           &:before
  2268.             content: ''
  2269.             width: 20px
  2270.             height: 2px
  2271.             background-color: #fff
  2272.             position: absolute
  2273.             top: -6px
  2274.           &:after
  2275.             content: ''
  2276.             width: 20px
  2277.             height: 2px
  2278.             background-color: #fff
  2279.             position: absolute
  2280.             top: 6px
  2281.  
  2282.     .side-nav
  2283.       position: absolute
  2284.       width: 100%
  2285.       background-color: #35475e
  2286.       height: 100%
  2287.       z-index: 1
  2288.       display: none
  2289.       &.visible
  2290.         display: block
  2291.       .logo
  2292.         background-color: #1c2747
  2293.         color: #fff
  2294.         display: flex
  2295.         justify-content: center
  2296.         align-items: center
  2297.         span
  2298.           display: inline-block
  2299.           margin-left: 5px
  2300.  
  2301.       nav
  2302.         ul
  2303.           padding: 0
  2304.           margin: 0
  2305.           li
  2306.             padding: 16px 16px
  2307.             border-bottom: 1px solid #3c506a
  2308.             position: relative
  2309.             &.active
  2310.               &:before
  2311.                 content: ''
  2312.                 position: absolute
  2313.                 width: 4px
  2314.                 height: 100%
  2315.                 top: 0
  2316.                 left: 0
  2317.                 background-color: #fff
  2318.             a
  2319.               color: #fff
  2320.               min-width: 20px
  2321.               display: block
  2322.               text-align: left
  2323.  
  2324.               .svg-inline--fa
  2325.                 color: #fff
  2326.                 min-width: 20px
  2327.                 text-align: center
  2328.               span
  2329.                 &:nth-child(2)
  2330.                   margin-left: 10px
  2331.                   font-size: 14px
  2332.         &.multilevel-menu
  2333.           .wrap-multilevel-menu
  2334.             font-size: 14px
  2335.             .parent-elem-menu
  2336.               position: relative
  2337.               margin: 0
  2338.               background-color: #35475e
  2339.               outline: none
  2340.               padding: 16px 16px 16px 45px
  2341.               color: $color-white
  2342.               border: none
  2343.               border-bottom: 1px solid #3c506a
  2344.               text-align: left
  2345.               transition: .25s ease
  2346.               &:hover
  2347.                 background-color: lighten(#35475e, 30%)
  2348.               &:active
  2349.                 background-color: darken(#35475e, 10%)
  2350.               .text-element
  2351.                 display: inline-block
  2352.               .svg-inline--fa
  2353.                 font-size: 16px
  2354.                 position: absolute
  2355.                 left: 7%
  2356.                 top: 50%
  2357.                 transform: translateY(-50%)
  2358.               .ui-icon
  2359.                 position: absolute
  2360.                 right: 0
  2361.                 top: 50%
  2362.                 transform: translateY(-50%)
  2363.                 text-indent: unset
  2364.                 margin: 0
  2365.           .list-menu
  2366.             border: none
  2367.             li
  2368.               background-color: lighten(#35475e, 10%)
  2369.               padding: 0
  2370.               transition: .25s ease
  2371.               &:hover
  2372.                 background-color: lighten(#35475e, 30%)
  2373.               &:active
  2374.                 background-color: darken(#35475e, 10%)
  2375.               .svg-inline--fa
  2376.                 font-size: 16px
  2377.                 color: $color-white
  2378.                 position: absolute
  2379.                 left: 7%
  2380.                 top: 50%
  2381.                 transform: translateY(-50%)
  2382.               a
  2383.                 padding: 16px 16px 16px 45px
  2384.         .single-element-menu
  2385.           font-size: 14px
  2386.           padding: 0
  2387.           a
  2388.             padding: 16px 16px 16px 45px
  2389.             transition: .25s ease
  2390.             &:hover
  2391.               background-color: lighten(#35475e, 30%)
  2392.             &:active
  2393.               background-color: darken(#35475e, 10%)
  2394.             .svg-inline--fa
  2395.               font-size: 16px
  2396.               color: $color-white
  2397.               position: absolute
  2398.               left: 7%
  2399.               top: 50%
  2400.               transform: translateY(-50%)
  2401.       .logo
  2402.         background-color: #1c2747
  2403.         color: #fff
  2404.     .main-content
  2405.       padding-top: 45px
  2406.       .main
  2407.         min-height: 100vh
  2408.         padding: 20px 10px
  2409.         background-color: rgba(9,167,253,.15)
  2410.         .wrap-title-admin-page
  2411.           width: 100%
  2412.           margin-bottom: 20px
  2413.           background-color: $color-white
  2414.           box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2415.           padding: 10px 20px
  2416.           .title-admin-page
  2417.             font-family: $bold-font
  2418.             font-size: 24px
  2419.           &.title-and-btn
  2420.             display: flex
  2421.             justify-content: space-between
  2422.         .wrap-admin-content-block
  2423.           background-color: $color-white
  2424.           box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2425.           padding: 20px
  2426.  
  2427.  
  2428.  
  2429. // ADMIN PANEL ORGANIZER CLOSE
  2430.  
  2431.  
  2432. // ADMIN PANEL MAIN PAGE OPEN
  2433.  
  2434. main
  2435.   .wrap-cabinet-organizer
  2436.     .main-content
  2437.       .wrap-admin-main-page
  2438.         .wrap-btn
  2439.  
  2440. // ADMIN PANEL MAIN PAGE CLOSE
  2441.  
  2442.  
  2443. // ADMIN PANEL CREATE EVENT OPEN
  2444. main
  2445.   .wrap-cabinet-organizer
  2446.     &.create-event
  2447.       .main-content
  2448.         &.create-event-content
  2449.           .main
  2450.             padding: 20px 10px
  2451.             background-color: rgba(9,167,253,.15)
  2452.             .wrap-title-admin-page
  2453.               width: 100%
  2454.               margin-bottom: 20px
  2455.               background-color: $color-white
  2456.               box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2457.               padding: 10px 20px
  2458.               .title-admin-page
  2459.                 font-family: $bold-font
  2460.                 font-size: 24px
  2461.             .wrap-admin-content-block
  2462.               background-color: $color-white
  2463.               box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2464.               padding: 20px
  2465.               .wrap-inputs-admin
  2466.                 width: 500px
  2467.                 .input-group-admin
  2468.                   width: 100%
  2469.                   margin: 0 0 30px 0
  2470.                   &:last-child
  2471.                     margin-bottom: 0
  2472.                   .title-field
  2473.                     display: block
  2474.                   .subtitle-field
  2475.                     display: block
  2476.                     font-family: $light-font
  2477.                     font-size: 14px
  2478.                     margin-bottom: 10px
  2479.                 .wrap-admin-address-input
  2480.                   margin-bottom: 30px
  2481.                   .input-group-admin
  2482.                     margin-bottom: 15px
  2483.           .wrap-btn
  2484.             text-align: center
  2485.             box-shadow: 0 1px 4px rgba(0,84,186,.2)
  2486.             margin-top: 10px
  2487.             padding: 10px
  2488.             background-color: $color-white
  2489.  
  2490.  
  2491. // ADMIN PANEL CREATE EVENT CLOSE
  2492.  
  2493.  
  2494. // ADMIN PANEL CREATE EVENT 'MAIN' OPEN
  2495.  
  2496. main
  2497.   .wrap-cabinet-organizer
  2498.     &.create-event
  2499.       .main-content
  2500.         &.create-event-content
  2501.           .main
  2502.             .wrap-create-event-main-page
  2503.               .wrap-admin-content-block
  2504.                 .wrap-inputs-admin
  2505.                   .input-group-admin
  2506.                     &.wrap-add-new-input
  2507.                       .btn-add-new-something
  2508.                         padding: 5px 5px 0px 5px
  2509.                         margin-top: 10px
  2510.                         font-size: 14px
  2511.                       .wrap-input-added
  2512.                         position: relative
  2513.                         margin-bottom: 20px
  2514.                         &:last-of-type
  2515.                           margin-bottom: 0
  2516.                         .btn-remove-new-input
  2517.                           position: absolute
  2518.                           top: 50%
  2519.                           right: -40px
  2520.                           transform: translateY(-50%)
  2521.  
  2522.  
  2523. // ADMIN PANEL CREATE EVENT 'MAIN' CLOSE
  2524.  
  2525.  
  2526. // PAGE ORGANIZERS OPEN
  2527.  
  2528. main
  2529.   .wrap-organizers
  2530.     .wrap-part-organizers
  2531.       padding-bottom: 10px
  2532.       .organizers-part
  2533.         margin-bottom: 20px
  2534.         .title-organizers
  2535.           font-family: $bold-font
  2536.           font-size: 30px
  2537.           display: block
  2538.           color: $blue-hue
  2539.           border-bottom: 1px solid #c9c9c9
  2540.           padding-bottom: 10px
  2541.           margin-bottom: 10px
  2542.       .about-school
  2543.         .title-organizers
  2544.           font-family: $bold-font
  2545.           font-size: 30px
  2546.           display: block
  2547.           color: $blue-hue
  2548.           border-bottom: 1px solid #c9c9c9
  2549.           padding-bottom: 10px
  2550.           margin-bottom: 10px
  2551.  
  2552. #form-become-organizer
  2553.   .form-group
  2554.     width: 100%
  2555.     margin-bottom: 0
  2556.     .field-answer
  2557.       width: 100%
  2558.       margin-bottom: 20px
  2559.   .wrap-checkbox
  2560.     width: 100%
  2561.     margin-top: 15px
  2562.     label
  2563.       width: 100%
  2564.       padding: 4px 4px 4px 40px
  2565.       font-size: 13px
  2566.       span
  2567.         font-size: 13px
  2568.   .wrap-btn
  2569.     text-align: center
  2570.     .filled-button
  2571.       margin-top: 10px
  2572.  
  2573. #form-begin-school
  2574.   .form-group
  2575.     width: 100%
  2576.     margin-bottom: 0
  2577.     .field-answer
  2578.       width: 100%
  2579.       margin-bottom: 20px
  2580.   .wrap-checkbox
  2581.     width: 100%
  2582.     margin-top: 15px
  2583.     label
  2584.       width: 100%
  2585.       padding: 4px 4px 4px 40px
  2586.       font-size: 13px
  2587.       span
  2588.         font-size: 13px
  2589.   .wrap-btn
  2590.     text-align: center
  2591.     .filled-button
  2592.       margin-top: 10px
  2593.  
  2594. #form-accept-notice
  2595.   text-align: center
  2596.   .wrap-btn
  2597.     display: inline-block
  2598.     .filled-button.cancel
  2599.       margin-left: 10px
  2600.       background-color: #e74c3c
  2601.       border: 3px solid #e74c3c
  2602.       box-shadow: darken(#e74c3c, 10%) 0 3px 0 0
  2603.       &:hover
  2604.         background-color: darken(#e74c3c, 10%)
  2605.         border: 3px solid darken(#e74c3c, 10%)
  2606.         box-shadow: darken(#e74c3c, 0%) 0 3px 0 0
  2607.       &:active
  2608.         background-color: darken(#e74c3c, 15%)
  2609.         border: 3px solid darken(#e74c3c, 15%)
  2610.     input.filled-button
  2611.       background-color: #2ecc71
  2612.       border: 3px solid #2ecc71
  2613.       box-shadow: darken(#2ecc71, 10%) 0 3px 0 0
  2614.       &:hover
  2615.         background-color: darken(#2ecc71, 10%)
  2616.         border: 3px solid darken(#2ecc71, 10%)
  2617.         box-shadow: darken(#2ecc71, 0%) 0 3px 0 0
  2618.       &:active
  2619.         background-color: darken(#2ecc71, 15%)
  2620.         border: 3px solid darken(#2ecc71, 15%)
  2621.  
  2622.  
  2623. .default-form-style-pop-up
  2624.   .title-field
  2625.     display: block
  2626.     margin-bottom: 5px
  2627.   .input-style-default
  2628.     margin-bottom: 20px
  2629.   .form-group
  2630.     width: 100%
  2631.     margin-bottom: 10px
  2632.     .field-answer
  2633.       width: 100%
  2634.       margin-bottom: 20px
  2635.   .wrap-checkbox
  2636.     width: 100%
  2637.     margin-top: 15px
  2638.     label
  2639.       width: 100%
  2640.       padding: 4px 4px 4px 40px
  2641.       font-size: 13px
  2642.       span
  2643.         font-size: 13px
  2644.   .wrap-btn
  2645.     text-align: center
  2646.     .filled-button
  2647.       margin-top: 10px
  2648.  
  2649.  
  2650. // PAGE ORGANIZERS OPEN
  2651.  
  2652.  
  2653. // USER ACTIVATION PAGE OPEN
  2654.  
  2655. main
  2656.   .wrap-activation-user
  2657.     margin: 50px 0
  2658.     .wrap-message-activate
  2659.       text-align: center
  2660.       padding: 20px
  2661.       &.success
  2662.         background-color: rgba(2,136,209,.15)
  2663.       &.error
  2664.         background-color: rgba(255, 0, 0, 0.15)
  2665.       .svg-inline--fa
  2666.         font-size: 100px
  2667.         color: $color-orange
  2668.       .message
  2669.         font-family: $default-font
  2670.         font-size: 25px
  2671.         padding: 0
  2672.         margin: 20px 0 0 0
  2673.         a
  2674.           color: $blue-hue
  2675.           transition: .25s ease
  2676.           &:hover
  2677.             color: lighten($blue-hue, 10%)
  2678.           &:active
  2679.             color: darken($blue-hue, 10%)
  2680.  
  2681. // USER ACTIVATION PAGE CLOSE
  2682.  
  2683. // PAGE IN DEVELOPMENT OPEN
  2684.  
  2685. main
  2686.   .page-in-development
  2687.     margin: 50px 0
  2688.     .wrap-message-in-development
  2689.       text-align: center
  2690.       padding: 20px
  2691.       background-color: rgba(2,136,209,.15)
  2692.       .svg-inline--fa
  2693.         font-size: 100px
  2694.         color: $color-orange
  2695.       .message
  2696.         font-family: $default-font
  2697.         font-size: 25px
  2698.         padding: 0
  2699.         margin: 20px 0 0 0
  2700.         a
  2701.           color: $blue-hue
  2702.           transition: .25s ease
  2703.           &:hover
  2704.             color: lighten($blue-hue, 10%)
  2705.           &:active
  2706.             color: darken($blue-hue, 10%)
  2707.  
  2708. // USER IN DEVELOPMENT CLOSE
  2709.  
  2710. // IF NOTHING FOUND OPEN
  2711.  
  2712. .wrap-list-of-all-events
  2713.   .wrap-nothing-found
  2714.     text-align: center
  2715.     padding: 20px
  2716.     background-color: rgba(2,136,209,.15)
  2717.     .svg-inline--fa
  2718.       font-size: 100px
  2719.       color: $color-orange
  2720.     .message
  2721.       font-family: $default-font
  2722.       font-size: 25px
  2723.       padding: 0
  2724.       margin: 20px 0 0 0
  2725.       a
  2726.         color: $blue-hue
  2727.         transition: .25s ease
  2728.         &:hover
  2729.           color: lighten($blue-hue, 10%)
  2730.         &:active
  2731.           color: darken($blue-hue, 10%)
  2732.  
  2733. // IF NOTHING FOUND CLOSE
  2734.  
  2735. // ALERT BLOCK OPEN
  2736.  
  2737.  
  2738. .alert-block-message
  2739.   background-color: #FF6347
  2740.   color: #FFFFFF
  2741.   width: 100%
  2742.   z-index: 5555555
  2743.   .alert-message
  2744.  
  2745.     text-align: center
  2746.     padding: 5px
  2747.     p
  2748.       padding: 0
  2749.       margin: 0
  2750.       .svg-inline--fa
  2751.         color: $deep-blue
  2752.       a
  2753.         color: $deep-blue
  2754.         transition: .25s ease
  2755.         &:hover
  2756.           color: #000000
  2757.         &:active
  2758.           color: darken($color-orange, 10%)
  2759.  
  2760. // ALERT BLOCK CLOSE
  2761.  
  2762. // DEFAULT STYLE TABLE OPEN
  2763.  
  2764. .default-style-table
  2765.   width: 100%
  2766.   thead
  2767.     background-color: #f6f6f6
  2768.     border: 1px solid #dcdcdc
  2769.     tr
  2770.       th
  2771.         padding: 5px
  2772.         border: 1px solid #dcdcdc
  2773.         &:last-child
  2774.           border-right: none
  2775.   tbody
  2776.     tr
  2777.       font-family: $light-font
  2778.       border: 1px solid #dcdcdc
  2779.       background-color: $color-white
  2780.       transition: .25s ease
  2781.       &:hover
  2782.         background-color: #f6f6f6
  2783.       &:first-child
  2784.         border-top: none
  2785.       td
  2786.         border-right: 1px solid #dcdcdc
  2787.         padding: 5px
  2788.         &:last-child
  2789.           border-right: none
  2790.         &.action-td
  2791.           text-align: center
  2792.           font-size: 25px
  2793.           .action-group
  2794.             position: relative
  2795.             display: inline-block
  2796.             .btn-open-actions
  2797.               .svg-inline--fa
  2798.                 color: $blue-hue
  2799.                 transition: .25s ease
  2800.                 &:hover
  2801.                   color: lighten($blue-hue, 10%)
  2802.                 &:active
  2803.                   color: darken($blue-hue, 10%)
  2804.             .menu-action
  2805.               position: absolute
  2806.               right: 0px
  2807.               min-width: 160px
  2808.               text-align: left
  2809.               font-size: 13px
  2810.               font-family: $default-font
  2811.               color: $blue-hue
  2812.               background-color: $color-white
  2813.               border: 1px solid #9e9e9e
  2814.               z-index: 5000
  2815.               &.close
  2816.                 display: none
  2817.               &.open
  2818.                 display: block
  2819.               ul
  2820.                 li
  2821.                   a
  2822.                     width: 100%
  2823.                     padding: 3px 3px 3px 15px
  2824.                     display: inline-block
  2825.                     color: black
  2826.                     transition: .25s ease
  2827.                     &:hover
  2828.                       background-color: #4c5566
  2829.                       color: $color-white
  2830.                     &:active
  2831.                       background-color: darken(#4c5566, 10%)
  2832.                     .svg-inline--fa
  2833.                       margin-right: 5px
  2834.                   &.accept-request
  2835.                     a
  2836.                       .svg-inline--fa
  2837.                         color: #4CAF50
  2838.                   &.decline-request
  2839.                     a
  2840.                       .svg-inline--fa
  2841.                         color: #e74c3c
  2842.                   &:last-child
  2843.                     a
  2844.                       border-bottom: none
  2845.  
  2846.  
  2847.  
  2848.  
  2849. // DEFAULT STYLE TABLE CLOSE
  2850.  
  2851. // STYLE UPLOAD FORM OPEN
  2852.  
  2853. #upload
  2854.   width: 100%
  2855.   margin: 40px 0
  2856.   ul
  2857.     li
  2858.       height: 80px
  2859.  
  2860. // STYLE UPLOAD FORM CLOSE
  2861.  
  2862.  
  2863. // INPUT VALIDATE STYLE
  2864.  
  2865. .form-group
  2866.   position: relative
  2867.   label.form_input_error
  2868.     position: absolute !important
  2869.     transition: .25s ease
  2870.     bottom: 0
  2871.     left: 0
  2872.     margin: 0
  2873.     text-align: left
  2874.     font-size: 13px
  2875.     font-family: $light-font
  2876.     color: red
  2877.   input.form_input_error
  2878.     box-shadow: 0 0 2px red
  2879.  
  2880. .form_checkbox_error
  2881.   border: 2px solid red !important
  2882.  
  2883. .wrap-checkbox-tab
  2884.   position: relative
  2885.   .ui-checkboxradio-icon.form_input_error
  2886.     border: 2px solid red
  2887.   label.form_input_error
  2888.     position: absolute !important
  2889.  
  2890.  
  2891. // BETA PAGE EVENT
  2892. .beta-page-banner-wrap
  2893.   .beta-page-banner
  2894.     .title-beta-page
  2895.       text-align: center
  2896.       font-family: $bold-font
  2897.       font-size: 50px
  2898.       color: $color-orange
  2899.       margin-bottom: 30px
  2900.     .wrap-img-beta
  2901.       img
  2902.         width: 100%
  2903.  
  2904.  
  2905. // PRESENTATION STYLE
  2906.  
  2907. .presentation-wrap
  2908.   clear: both
  2909.   border: 1px solid #c9c9c9
  2910.   z-index: 1000
  2911.   width: 100%
  2912.   height: 300px
  2913.   margin-bottom: 50px
  2914.   background: #fff
  2915.   .wrap-slides
  2916.     z-index: 1
  2917.     overflow: hidden
  2918.     position: relative
  2919.     width: 100%
  2920.     height: 100%
  2921.     text-align: center
  2922.     .slide-wrap
  2923.       position: absolute
  2924.       width: 100%
  2925.       height: 100%
  2926.       z-index: 0
  2927.       .current-slide
  2928.         width: 100%
  2929.         height: 100%
  2930.         background-size: contain
  2931.         background-repeat: no-repeat
  2932.         background-position: center center
  2933.         display: block
  2934.       &.hidden-slide
  2935.         display: none
  2936.   &.full-screen-pres
  2937.     position: fixed
  2938.     top: 50%
  2939.     bottom: 0
  2940.     left: 0
  2941.     right: 0
  2942.     padding-bottom: 45px
  2943.     width: 100%
  2944.     height: 100vh
  2945.     transform: translateY(-50%)
  2946.   &.original-pres
  2947.     position: static
  2948.     padding: 0
  2949.     width: 100%
  2950.     top: 0
  2951.     transform: translateY(0%)
  2952.     height: 600px
  2953.   .presentation-controls
  2954.     clear: both
  2955.     overflow: auto
  2956.     background-color: #0288d1
  2957.     text-align: center
  2958.     padding: 10px
  2959.     button
  2960.       float: left
  2961.       margin-left: 10px
  2962.       background: transparent
  2963.       color: $color-orange
  2964.       &:hover
  2965.         cursor: pointer
  2966.         color: $white
  2967.       &#full-screen
  2968.         float: right
  2969.  
  2970.  
  2971.  
  2972. @import "media" // Always at the end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement