@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700); .genius-main-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); height: 100%; } .genius-main-container .genius-grid-column { max-width: 100%; align-self: center; display: grid; height: 100%; } .genius-main-container .genius-grid-column.right { align-self: center; grid-template-rows: 1fr; } .genius-main-container .genius-grid-column.right .genius-login-card { width: 480px; align-self: center; margin: 0; } .genius-main-container .genius-grid-column.left { align-self: center; grid-template-rows: 1fr; } .genius-main-container .genius-grid-column.left .genius-login-description { margin-left: 50px; } .genius-main-container .genius-grid-column.left .genius-api-description { align-self: center; margin: 0; text-align: left; margin-left: 60px; } .genius-main-container .genius-grid-column.left .genius-api-description ul li { margin-left: -15px; } .genius-tab-link { opacity: 1; } .genius-tab-logo { pointer-events: none; } .genius-tab-logo img { height: 40px; } html, body { height: 100%; width: 100%; margin: 0; padding: 0; } html #root, html .genius-outside-container, html .main, body #root, body .genius-outside-container, body .main { height: 100%; width: 100%; } html #root .genius-inside-container, html .genius-outside-container .genius-inside-container, html .main .genius-inside-container, body #root .genius-inside-container, body .genius-outside-container .genius-inside-container, body .main .genius-inside-container { padding: 40px; } html, body { font-family: "lato", sans-serif; } .i-example__heading { display: none !important; } .genius_colors_container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-gap: 10px; height: auto; } .genius_colors_container .colors { height: 60px; width: 200px; content: ""; display: inline-block; position: relative; } .genius_colors_container .colors:after { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100px; text-align: center; line-height: 22px; } .genius_colors_container .colors.genius_main { background: #fdc602; } .genius_colors_container .colors.genius_main:after { content: "main - #fdc602"; color: black; } .genius_colors_container .colors.genius_lightGray { background: #f5f5f5; } .genius_colors_container .colors.genius_lightGray:after { color: black; content: "lightGray - #f5f5f5 "; } .genius_colors_container .colors.genius_middleGray { background: #b5b5b5; } .genius_colors_container .colors.genius_middleGray:after { color: black; content: "middleGray - #b5b5b5"; } .genius_colors_container .colors.genius_darkGray { background: #4a4f55; } .genius_colors_container .colors.genius_darkGray:after { color: white; content: "darkGray - #4a4f55"; } .genius_colors_container .colors.genius_blueGray { background: #455a64; } .genius_colors_container .colors.genius_blueGray:after { color: white; content: "blueGray - #455a64"; } .genius_colors_container .colors.genius_temp0-14 { background: #185fb6; } .genius_colors_container .colors.genius_temp0-14:after { color: white; content: "temp0-14 - #185fb6"; } .genius_colors_container .colors.genius_temp15-19 { background: #00bcd4; } .genius_colors_container .colors.genius_temp15-19:after { color: white; content: "temp15-19 - #00bcd4"; } .genius_colors_container .colors.genius_temp20-23 { background: #ffc107; } .genius_colors_container .colors.genius_temp20-23:after { color: black; content: "temp20-23 - #ffc107"; } .genius_colors_container .colors.genius_temp24-29 { background: #ef6b52; } .genius_colors_container .colors.genius_temp24-29:after { color: white; content: "temp24-29 - #ef6b52"; } .genius_colors_container .colors.genius_temp66-100 { background: #902a28; } .genius_colors_container .colors.genius_temp66-100:after { color: white; content: "temp66-100 - #902a28"; } .genius_colors_container .colors.genius_flatGreen { background: #2ecc71; } .genius_colors_container .colors.genius_flatGreen:after { color: black; content: "flatGreen - #2ecc71"; } .genius_colors_container .colors.genius_flatRed { background: #e74c3c; } .genius_colors_container .colors.genius_flatRed:after { color: white; content: "flatRed - #e74c3c"; } .genius_colors_container .colors.genius_flatOrange { background: #e67e22; } .genius_colors_container .colors.genius_flatOrange:after { color: white; content: "flatOrange - #e67e22"; } .genius_colors_container .colors.genius_flatBlue { background: #88cfff; } .genius_colors_container .colors.genius_flatBlue:after { color: black; content: "flatBlue - #88cfff"; } .genius_colors_container .colors.genius_flatYellow { background: #f1c40f; } .genius_colors_container .colors.genius_flatYellow:after { color: black; content: "flatYellow - #f1c40f"; } /* --- name: Typography category: Various --- ```types.html hidden

Lorem Ipsum - h1

Lorem Ipsum - h2

Lorem Ipsum - h3

Lorem Ipsum - h4

Lorem Ipsum - h5
Lorem Ipsum - h6
Lorem Ipsum - span
Lorem Ipsum - i
Lorem Ipsum - b
Lorem Ipsum - u
Lorem Ipsum - Strong
Lorem Ipsum - Small

Lorem Ipsum - p

Lorem Ipsum - pre
``` */ .font-thin { font-family: 'Lato', sans-serif; font-weight: 300; } .font-regular { font-family: 'Lato', sans-serif; font-weight: 400; } .font-bold { font-family: 'Lato', sans-serif; font-weight: 700; } h1, h2, h3, h4, h5, h6 { font-family: 'Lato', sans-serif; font-weight: 700; } span, p, i, u { font-family: 'Lato', sans-serif; font-weight: 400; } b, strong { font-family: 'Lato', sans-serif; font-weight: 700; } /* --- name: Colors category: Various --- Buttons can be used with ``, `







``` */ .btnDefaultMixin { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; } .btnDefaultMixin[disabled], .btnDefaultMixin.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; background: #fdc602; } .btn-genius[disabled], .btn-genius.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius:hover, .btn-genius:active, .btn-genius:focus { background: #e4b202; } .btn-genius[disabled], .btn-genius.disabled { background: #fdd135; } .btn-genius-dark { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; background: #4a4f55; color: white; } .btn-genius-dark[disabled], .btn-genius-dark.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-dark:hover, .btn-genius-dark:active, .btn-genius-dark:focus { background: #3e4247; } .btn-genius-dark[disabled], .btn-genius-dark.disabled { background: #626870; } .btn-genius-success { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; background: #2ecc71; color: white; } .btn-genius-success[disabled], .btn-genius-success.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-success:hover, .btn-genius-success:active, .btn-genius-success:focus { background: #29b765; } .btn-genius-error { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; background: #e74c3c; color: white; } .btn-genius-error[disabled], .btn-genius-error.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-error:hover, .btn-genius-error:active, .btn-genius-error:focus { background: #e43725; } .btn-genius-line { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; border: 1px solid #fdc602; background: white; } .btn-genius-line[disabled], .btn-genius-line.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-line:hover, .btn-genius-line:active, .btn-genius-line:focus { background: #fdc602; outline: 0; } .btn-genius-line-dark { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; border: 1px solid #4a4f55; background: white; } .btn-genius-line-dark[disabled], .btn-genius-line-dark.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-line-dark:hover, .btn-genius-line-dark:active, .btn-genius-line-dark:focus { background: #4a4f55; outline: 0; color: white; } .btn-genius-line-dark[disabled], .btn-genius-line-dark.disabled { background: #ffffff; } .btn-genius-line-success { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; border: 1px solid #2ecc71; background: white; } .btn-genius-line-success[disabled], .btn-genius-line-success.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-line-success:hover, .btn-genius-line-success:active, .btn-genius-line-success:focus { background: #2ecc71; outline: 0; color: white; } .btn-genius-line-success[disabled], .btn-genius-line-success.disabled { background: #ffffff; } .btn-genius-line-error { outline: none; border: none; border-radius: 20px; padding: 8px 16px; text-transform: uppercase; color: #4a4f55; cursor: pointer; border: 1px solid #e74c3c; background: white; } .btn-genius-line-error[disabled], .btn-genius-line-error.disabled { pointer-events: none; cursor: default; opacity: 0.5; } .btn-genius-line-error:hover, .btn-genius-line-error:active, .btn-genius-line-error:focus { background: #e74c3c; outline: 0; color: white; } .btn-genius-line-error[disabled], .btn-genius-line-error.disabled { background: #ffffff; } /* --- name: Toggles category: Input --- ```types.html
 
 
 

 
 
 

 
 
 

 
 
 



 
 
 

 
 
 

 
 
 

 
 
 
``` */ .genius-toggle-square-default { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-square-default .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-default .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-default .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #ca9e02; } .genius-toggle-square-default .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-default .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-default .onoffswitch-inner:before, .genius-toggle-square-default .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-default .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #fdc602; color: white; text-align: left; } .genius-toggle-square-default .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-square-default .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-default[disabled] .onoffswitch-switch, .genius-toggle-square-default.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-square-default[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-default.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #fdc602; } .genius-toggle-square-default[disabled], .genius-toggle-square-default.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-square-default[disabled] .onoffswitch-checkbox, .genius-toggle-square-default.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-default[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-square-default.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-default[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-default.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #fed74e; } .genius-toggle-square-default[disabled] .onoffswitch-label, .genius-toggle-square-default.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-default[disabled] .onoffswitch-inner, .genius-toggle-square-default.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-default[disabled] .onoffswitch-inner:before, .genius-toggle-square-default.disabled .onoffswitch-inner:before, .genius-toggle-square-default[disabled] .onoffswitch-inner:after, .genius-toggle-square-default.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-default[disabled] .onoffswitch-inner:before, .genius-toggle-square-default.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #fee381; color: white; text-align: left; } .genius-toggle-square-default[disabled] .onoffswitch-inner:after, .genius-toggle-square-default.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-square-default[disabled] .onoffswitch-switch, .genius-toggle-square-default.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-default[disabled][disabled] .onoffswitch-switch, .genius-toggle-square-default.disabled[disabled] .onoffswitch-switch, .genius-toggle-square-default[disabled].disabled .onoffswitch-switch, .genius-toggle-square-default.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-square-default[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-default.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-default[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-default.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #fee381; } .genius-toggle-square-dark { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-square-dark .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-dark .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-dark .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #32363a; } .genius-toggle-square-dark .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-dark .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-dark .onoffswitch-inner:before, .genius-toggle-square-dark .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-dark .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #4a4f55; color: white; text-align: left; } .genius-toggle-square-dark .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-square-dark .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-dark[disabled] .onoffswitch-switch, .genius-toggle-square-dark.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-square-dark[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-dark.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #4a4f55; } .genius-toggle-square-dark[disabled], .genius-toggle-square-dark.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-square-dark[disabled] .onoffswitch-checkbox, .genius-toggle-square-dark.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-dark[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-square-dark.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-dark[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-dark.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #6e757e; } .genius-toggle-square-dark[disabled] .onoffswitch-label, .genius-toggle-square-dark.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-dark[disabled] .onoffswitch-inner, .genius-toggle-square-dark.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-dark[disabled] .onoffswitch-inner:before, .genius-toggle-square-dark.disabled .onoffswitch-inner:before, .genius-toggle-square-dark[disabled] .onoffswitch-inner:after, .genius-toggle-square-dark.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-dark[disabled] .onoffswitch-inner:before, .genius-toggle-square-dark.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #888f97; color: white; text-align: left; } .genius-toggle-square-dark[disabled] .onoffswitch-inner:after, .genius-toggle-square-dark.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-square-dark[disabled] .onoffswitch-switch, .genius-toggle-square-dark.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-dark[disabled][disabled] .onoffswitch-switch, .genius-toggle-square-dark.disabled[disabled] .onoffswitch-switch, .genius-toggle-square-dark[disabled].disabled .onoffswitch-switch, .genius-toggle-square-dark.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-square-dark[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-dark.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-dark[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-dark.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #888f97; } .genius-toggle-square-success { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-square-success .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-success .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-success .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #25a25a; } .genius-toggle-square-success .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-success .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-success .onoffswitch-inner:before, .genius-toggle-square-success .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-success .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #2ecc71; color: white; text-align: left; } .genius-toggle-square-success .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-square-success .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-success[disabled] .onoffswitch-switch, .genius-toggle-square-success.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-square-success[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-success.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #2ecc71; } .genius-toggle-square-success[disabled], .genius-toggle-square-success.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-square-success[disabled] .onoffswitch-checkbox, .genius-toggle-square-success.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-success[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-square-success.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-success[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-success.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #69dd9a; } .genius-toggle-square-success[disabled] .onoffswitch-label, .genius-toggle-square-success.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-success[disabled] .onoffswitch-inner, .genius-toggle-square-success.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-success[disabled] .onoffswitch-inner:before, .genius-toggle-square-success.disabled .onoffswitch-inner:before, .genius-toggle-square-success[disabled] .onoffswitch-inner:after, .genius-toggle-square-success.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-success[disabled] .onoffswitch-inner:before, .genius-toggle-square-success.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #93e7b6; color: white; text-align: left; } .genius-toggle-square-success[disabled] .onoffswitch-inner:after, .genius-toggle-square-success.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-square-success[disabled] .onoffswitch-switch, .genius-toggle-square-success.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-success[disabled][disabled] .onoffswitch-switch, .genius-toggle-square-success.disabled[disabled] .onoffswitch-switch, .genius-toggle-square-success[disabled].disabled .onoffswitch-switch, .genius-toggle-square-success.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-square-success[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-success.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-success[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-success.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #93e7b6; } .genius-toggle-square-error { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-square-error .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-error .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-error .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #d62c1a; } .genius-toggle-square-error .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-error .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-error .onoffswitch-inner:before, .genius-toggle-square-error .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-error .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #e74c3c; color: white; text-align: left; } .genius-toggle-square-error .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-square-error .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-error[disabled] .onoffswitch-switch, .genius-toggle-square-error.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-square-error[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-error.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #e74c3c; } .genius-toggle-square-error[disabled], .genius-toggle-square-error.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-square-error[disabled] .onoffswitch-checkbox, .genius-toggle-square-error.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-error[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-square-error.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-error[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-error.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #ef8b80; } .genius-toggle-square-error[disabled] .onoffswitch-label, .genius-toggle-square-error.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-error[disabled] .onoffswitch-inner, .genius-toggle-square-error.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-error[disabled] .onoffswitch-inner:before, .genius-toggle-square-error.disabled .onoffswitch-inner:before, .genius-toggle-square-error[disabled] .onoffswitch-inner:after, .genius-toggle-square-error.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-error[disabled] .onoffswitch-inner:before, .genius-toggle-square-error.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #f5b4ae; color: white; text-align: left; } .genius-toggle-square-error[disabled] .onoffswitch-inner:after, .genius-toggle-square-error.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-square-error[disabled] .onoffswitch-switch, .genius-toggle-square-error.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-error[disabled][disabled] .onoffswitch-switch, .genius-toggle-square-error.disabled[disabled] .onoffswitch-switch, .genius-toggle-square-error[disabled].disabled .onoffswitch-switch, .genius-toggle-square-error.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-square-error[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-error.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-error[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-error.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #f5b4ae; } .genius-toggle-square-warning { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-square-warning .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-warning .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-warning .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #bf6516; } .genius-toggle-square-warning .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-warning .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-warning .onoffswitch-inner:before, .genius-toggle-square-warning .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-warning .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #e67e22; color: white; text-align: left; } .genius-toggle-square-warning .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-square-warning .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-warning[disabled] .onoffswitch-switch, .genius-toggle-square-warning.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-square-warning[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-warning.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #e67e22; } .genius-toggle-square-warning[disabled], .genius-toggle-square-warning.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-square-warning[disabled] .onoffswitch-checkbox, .genius-toggle-square-warning.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-square-warning[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-square-warning.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-square-warning[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-warning.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #eea667; } .genius-toggle-square-warning[disabled] .onoffswitch-label, .genius-toggle-square-warning.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 0; cursor: inherit; } .genius-toggle-square-warning[disabled] .onoffswitch-inner, .genius-toggle-square-warning.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-warning[disabled] .onoffswitch-inner:before, .genius-toggle-square-warning.disabled .onoffswitch-inner:before, .genius-toggle-square-warning[disabled] .onoffswitch-inner:after, .genius-toggle-square-warning.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-square-warning[disabled] .onoffswitch-inner:before, .genius-toggle-square-warning.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #f3c195; color: white; text-align: left; } .genius-toggle-square-warning[disabled] .onoffswitch-inner:after, .genius-toggle-square-warning.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-square-warning[disabled] .onoffswitch-switch, .genius-toggle-square-warning.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 0; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-square-warning[disabled][disabled] .onoffswitch-switch, .genius-toggle-square-warning.disabled[disabled] .onoffswitch-switch, .genius-toggle-square-warning[disabled].disabled .onoffswitch-switch, .genius-toggle-square-warning.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-square-warning[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-warning.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-warning[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-square-warning.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #f3c195; } .genius-toggle-round-default { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-round-default .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-default .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-default .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #ca9e02; } .genius-toggle-round-default .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-default .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-default .onoffswitch-inner:before, .genius-toggle-round-default .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-default .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #fdc602; color: white; text-align: left; } .genius-toggle-round-default .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-round-default .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-default[disabled] .onoffswitch-switch, .genius-toggle-round-default.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-round-default[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-default.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #fdc602; } .genius-toggle-round-default[disabled], .genius-toggle-round-default.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-round-default[disabled] .onoffswitch-checkbox, .genius-toggle-round-default.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-default[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-round-default.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-default[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-default.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #fed74e; } .genius-toggle-round-default[disabled] .onoffswitch-label, .genius-toggle-round-default.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-default[disabled] .onoffswitch-inner, .genius-toggle-round-default.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-default[disabled] .onoffswitch-inner:before, .genius-toggle-round-default.disabled .onoffswitch-inner:before, .genius-toggle-round-default[disabled] .onoffswitch-inner:after, .genius-toggle-round-default.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-default[disabled] .onoffswitch-inner:before, .genius-toggle-round-default.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #fee381; color: white; text-align: left; } .genius-toggle-round-default[disabled] .onoffswitch-inner:after, .genius-toggle-round-default.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-round-default[disabled] .onoffswitch-switch, .genius-toggle-round-default.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-default[disabled][disabled] .onoffswitch-switch, .genius-toggle-round-default.disabled[disabled] .onoffswitch-switch, .genius-toggle-round-default[disabled].disabled .onoffswitch-switch, .genius-toggle-round-default.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-round-default[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-default.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-default[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-default.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #fee381; } .genius-toggle-round-dark { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-round-dark .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-dark .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-dark .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #32363a; } .genius-toggle-round-dark .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-dark .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-dark .onoffswitch-inner:before, .genius-toggle-round-dark .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-dark .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #4a4f55; color: white; text-align: left; } .genius-toggle-round-dark .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-round-dark .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-dark[disabled] .onoffswitch-switch, .genius-toggle-round-dark.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-round-dark[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-dark.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #4a4f55; } .genius-toggle-round-dark[disabled], .genius-toggle-round-dark.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-round-dark[disabled] .onoffswitch-checkbox, .genius-toggle-round-dark.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-dark[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-round-dark.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-dark[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-dark.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #6e757e; } .genius-toggle-round-dark[disabled] .onoffswitch-label, .genius-toggle-round-dark.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-dark[disabled] .onoffswitch-inner, .genius-toggle-round-dark.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-dark[disabled] .onoffswitch-inner:before, .genius-toggle-round-dark.disabled .onoffswitch-inner:before, .genius-toggle-round-dark[disabled] .onoffswitch-inner:after, .genius-toggle-round-dark.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-dark[disabled] .onoffswitch-inner:before, .genius-toggle-round-dark.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #888f97; color: white; text-align: left; } .genius-toggle-round-dark[disabled] .onoffswitch-inner:after, .genius-toggle-round-dark.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-round-dark[disabled] .onoffswitch-switch, .genius-toggle-round-dark.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-dark[disabled][disabled] .onoffswitch-switch, .genius-toggle-round-dark.disabled[disabled] .onoffswitch-switch, .genius-toggle-round-dark[disabled].disabled .onoffswitch-switch, .genius-toggle-round-dark.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-round-dark[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-dark.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-dark[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-dark.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #888f97; } .genius-toggle-round-success { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-round-success .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-success .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-success .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #25a25a; } .genius-toggle-round-success .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-success .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-success .onoffswitch-inner:before, .genius-toggle-round-success .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-success .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #2ecc71; color: white; text-align: left; } .genius-toggle-round-success .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-round-success .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-success[disabled] .onoffswitch-switch, .genius-toggle-round-success.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-round-success[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-success.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #2ecc71; } .genius-toggle-round-success[disabled], .genius-toggle-round-success.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-round-success[disabled] .onoffswitch-checkbox, .genius-toggle-round-success.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-success[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-round-success.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-success[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-success.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #69dd9a; } .genius-toggle-round-success[disabled] .onoffswitch-label, .genius-toggle-round-success.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-success[disabled] .onoffswitch-inner, .genius-toggle-round-success.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-success[disabled] .onoffswitch-inner:before, .genius-toggle-round-success.disabled .onoffswitch-inner:before, .genius-toggle-round-success[disabled] .onoffswitch-inner:after, .genius-toggle-round-success.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-success[disabled] .onoffswitch-inner:before, .genius-toggle-round-success.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #93e7b6; color: white; text-align: left; } .genius-toggle-round-success[disabled] .onoffswitch-inner:after, .genius-toggle-round-success.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-round-success[disabled] .onoffswitch-switch, .genius-toggle-round-success.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-success[disabled][disabled] .onoffswitch-switch, .genius-toggle-round-success.disabled[disabled] .onoffswitch-switch, .genius-toggle-round-success[disabled].disabled .onoffswitch-switch, .genius-toggle-round-success.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-round-success[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-success.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-success[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-success.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #93e7b6; } .genius-toggle-round-error { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-round-error .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-error .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-error .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #d62c1a; } .genius-toggle-round-error .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-error .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-error .onoffswitch-inner:before, .genius-toggle-round-error .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-error .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #e74c3c; color: white; text-align: left; } .genius-toggle-round-error .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-round-error .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-error[disabled] .onoffswitch-switch, .genius-toggle-round-error.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-round-error[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-error.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #e74c3c; } .genius-toggle-round-error[disabled], .genius-toggle-round-error.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-round-error[disabled] .onoffswitch-checkbox, .genius-toggle-round-error.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-error[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-round-error.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-error[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-error.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #ef8b80; } .genius-toggle-round-error[disabled] .onoffswitch-label, .genius-toggle-round-error.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-error[disabled] .onoffswitch-inner, .genius-toggle-round-error.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-error[disabled] .onoffswitch-inner:before, .genius-toggle-round-error.disabled .onoffswitch-inner:before, .genius-toggle-round-error[disabled] .onoffswitch-inner:after, .genius-toggle-round-error.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-error[disabled] .onoffswitch-inner:before, .genius-toggle-round-error.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #f5b4ae; color: white; text-align: left; } .genius-toggle-round-error[disabled] .onoffswitch-inner:after, .genius-toggle-round-error.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-round-error[disabled] .onoffswitch-switch, .genius-toggle-round-error.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-error[disabled][disabled] .onoffswitch-switch, .genius-toggle-round-error.disabled[disabled] .onoffswitch-switch, .genius-toggle-round-error[disabled].disabled .onoffswitch-switch, .genius-toggle-round-error.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-round-error[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-error.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-error[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-error.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #f5b4ae; } .genius-toggle-round-warning { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; } .genius-toggle-round-warning .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-warning .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-warning .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #bf6516; } .genius-toggle-round-warning .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-warning .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-warning .onoffswitch-inner:before, .genius-toggle-round-warning .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-warning .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #e67e22; color: white; text-align: left; } .genius-toggle-round-warning .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #b5b5b5; color: white; text-align: right; } .genius-toggle-round-warning .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #9c9c9c; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-warning[disabled] .onoffswitch-switch, .genius-toggle-round-warning.disabled .onoffswitch-switch { background: #b5b5b5; } .genius-toggle-round-warning[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-warning.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #e67e22; } .genius-toggle-round-warning[disabled], .genius-toggle-round-warning.disabled { position: relative; width: 100%; max-width: 100px; min-width: 100px; height: 40px; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; cursor: pointer; pointer-events: none; } .genius-toggle-round-warning[disabled] .onoffswitch-checkbox, .genius-toggle-round-warning.disabled .onoffswitch-checkbox { width: 100%; height: 100%; position: absolute; z-index: 2; opacity: 0; padding: 0; margin: 0; cursor: inherit; } .genius-toggle-round-warning[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner, .genius-toggle-round-warning.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .genius-toggle-round-warning[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-warning.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0; transform: translateX(-10%); background-color: #eea667; } .genius-toggle-round-warning[disabled] .onoffswitch-label, .genius-toggle-round-warning.disabled .onoffswitch-label { display: block; height: 40px; overflow: hidden; border-radius: 30px; cursor: inherit; } .genius-toggle-round-warning[disabled] .onoffswitch-inner, .genius-toggle-round-warning.disabled .onoffswitch-inner { display: block; width: 200%; margin-left: -100%; transition: margin 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-warning[disabled] .onoffswitch-inner:before, .genius-toggle-round-warning.disabled .onoffswitch-inner:before, .genius-toggle-round-warning[disabled] .onoffswitch-inner:after, .genius-toggle-round-warning.disabled .onoffswitch-inner:after { display: block; float: left; width: 50%; height: 40px; padding: 0; line-height: 40px; font-size: 16px; color: white; box-sizing: border-box; } .genius-toggle-round-warning[disabled] .onoffswitch-inner:before, .genius-toggle-round-warning.disabled .onoffswitch-inner:before { content: 'YES'; padding-left: 12px; background-color: #f3c195; color: white; text-align: left; } .genius-toggle-round-warning[disabled] .onoffswitch-inner:after, .genius-toggle-round-warning.disabled .onoffswitch-inner:after { content: 'NO'; padding-right: 12px; background-color: #f5f5f5; color: white; text-align: right; } .genius-toggle-round-warning[disabled] .onoffswitch-switch, .genius-toggle-round-warning.disabled .onoffswitch-switch { display: block; width: calc(100px / 3); height: calc(100px / 3); background: #dcdcdc; position: absolute; top: 3px; bottom: 0; right: 50%; transform: translateX(-40%); border: 2px solid #FFFFFF; border-radius: 30px; box-sizing: border-box; transition: all 0.1s ease-in 0s; cursor: inherit; } .genius-toggle-round-warning[disabled][disabled] .onoffswitch-switch, .genius-toggle-round-warning.disabled[disabled] .onoffswitch-switch, .genius-toggle-round-warning[disabled].disabled .onoffswitch-switch, .genius-toggle-round-warning.disabled.disabled .onoffswitch-switch { background: #f5f5f5; } .genius-toggle-round-warning[disabled][disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-warning.disabled[disabled] .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-warning[disabled].disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch, .genius-toggle-round-warning.disabled.disabled .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { background-color: #f3c195; } /* --- name: Text category: Input --- ```types.html


Success
Success

Warning
Warning

Error
Error

Info
Info

























``` */ input[type="color"].default, input[type="date"].default, input[type="email"].default, input[type="month"].default, input[type="number"].default, input[type="password"].default, input[type="search"].default, input[type="tel"].default, input[type="text"].default, input[type="time"].default, input[type="url "].default, input[type="week"].default { padding: 8px; border-radius: 8px; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].default::placeholder, input[type="date"].default::placeholder, input[type="email"].default::placeholder, input[type="month"].default::placeholder, input[type="number"].default::placeholder, input[type="password"].default::placeholder, input[type="search"].default::placeholder, input[type="tel"].default::placeholder, input[type="text"].default::placeholder, input[type="time"].default::placeholder, input[type="url "].default::placeholder, input[type="week"].default::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].default:focus, input[type="date"].default:focus, input[type="email"].default:focus, input[type="month"].default:focus, input[type="number"].default:focus, input[type="password"].default:focus, input[type="search"].default:focus, input[type="tel"].default:focus, input[type="text"].default:focus, input[type="time"].default:focus, input[type="url "].default:focus, input[type="week"].default:focus, input[type="color"].default.active, input[type="date"].default.active, input[type="email"].default.active, input[type="month"].default.active, input[type="number"].default.active, input[type="password"].default.active, input[type="search"].default.active, input[type="tel"].default.active, input[type="text"].default.active, input[type="time"].default.active, input[type="url "].default.active, input[type="week"].default.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #e8e8e8, 0 4px 10px 0 rgba(46, 49, 52, 0.2); } input[type="color"].default:focus::placeholder, input[type="date"].default:focus::placeholder, input[type="email"].default:focus::placeholder, input[type="month"].default:focus::placeholder, input[type="number"].default:focus::placeholder, input[type="password"].default:focus::placeholder, input[type="search"].default:focus::placeholder, input[type="tel"].default:focus::placeholder, input[type="text"].default:focus::placeholder, input[type="time"].default:focus::placeholder, input[type="url "].default:focus::placeholder, input[type="week"].default:focus::placeholder, input[type="color"].default.active::placeholder, input[type="date"].default.active::placeholder, input[type="email"].default.active::placeholder, input[type="month"].default.active::placeholder, input[type="number"].default.active::placeholder, input[type="password"].default.active::placeholder, input[type="search"].default.active::placeholder, input[type="tel"].default.active::placeholder, input[type="text"].default.active::placeholder, input[type="time"].default.active::placeholder, input[type="url "].default.active::placeholder, input[type="week"].default.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].default.disabled, input[type="date"].default.disabled, input[type="email"].default.disabled, input[type="month"].default.disabled, input[type="number"].default.disabled, input[type="password"].default.disabled, input[type="search"].default.disabled, input[type="tel"].default.disabled, input[type="text"].default.disabled, input[type="time"].default.disabled, input[type="url "].default.disabled, input[type="week"].default.disabled, input[type="color"].default[disabled], input[type="date"].default[disabled], input[type="email"].default[disabled], input[type="month"].default[disabled], input[type="number"].default[disabled], input[type="password"].default[disabled], input[type="search"].default[disabled], input[type="tel"].default[disabled], input[type="text"].default[disabled], input[type="time"].default[disabled], input[type="url "].default[disabled], input[type="week"].default[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } input[type="color"].dark, input[type="date"].dark, input[type="email"].dark, input[type="month"].dark, input[type="number"].dark, input[type="password"].dark, input[type="search"].dark, input[type="tel"].dark, input[type="text"].dark, input[type="time"].dark, input[type="url "].dark, input[type="week"].dark { border: none; background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); padding: 10px; border-radius: 8px; } input[type="color"].dark::placeholder, input[type="date"].dark::placeholder, input[type="email"].dark::placeholder, input[type="month"].dark::placeholder, input[type="number"].dark::placeholder, input[type="password"].dark::placeholder, input[type="search"].dark::placeholder, input[type="tel"].dark::placeholder, input[type="text"].dark::placeholder, input[type="time"].dark::placeholder, input[type="url "].dark::placeholder, input[type="week"].dark::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].dark:focus, input[type="date"].dark:focus, input[type="email"].dark:focus, input[type="month"].dark:focus, input[type="number"].dark:focus, input[type="password"].dark:focus, input[type="search"].dark:focus, input[type="tel"].dark:focus, input[type="text"].dark:focus, input[type="time"].dark:focus, input[type="url "].dark:focus, input[type="week"].dark:focus, input[type="color"].dark.active, input[type="date"].dark.active, input[type="email"].dark.active, input[type="month"].dark.active, input[type="number"].dark.active, input[type="password"].dark.active, input[type="search"].dark.active, input[type="tel"].dark.active, input[type="text"].dark.active, input[type="time"].dark.active, input[type="url "].dark.active, input[type="week"].dark.active { outline: none; border: none; background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #dcdcdc, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].dark:focus::placeholder, input[type="date"].dark:focus::placeholder, input[type="email"].dark:focus::placeholder, input[type="month"].dark:focus::placeholder, input[type="number"].dark:focus::placeholder, input[type="password"].dark:focus::placeholder, input[type="search"].dark:focus::placeholder, input[type="tel"].dark:focus::placeholder, input[type="text"].dark:focus::placeholder, input[type="time"].dark:focus::placeholder, input[type="url "].dark:focus::placeholder, input[type="week"].dark:focus::placeholder, input[type="color"].dark.active::placeholder, input[type="date"].dark.active::placeholder, input[type="email"].dark.active::placeholder, input[type="month"].dark.active::placeholder, input[type="number"].dark.active::placeholder, input[type="password"].dark.active::placeholder, input[type="search"].dark.active::placeholder, input[type="tel"].dark.active::placeholder, input[type="text"].dark.active::placeholder, input[type="time"].dark.active::placeholder, input[type="url "].dark.active::placeholder, input[type="week"].dark.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].dark.disabled, input[type="date"].dark.disabled, input[type="email"].dark.disabled, input[type="month"].dark.disabled, input[type="number"].dark.disabled, input[type="password"].dark.disabled, input[type="search"].dark.disabled, input[type="tel"].dark.disabled, input[type="text"].dark.disabled, input[type="time"].dark.disabled, input[type="url "].dark.disabled, input[type="week"].dark.disabled, input[type="color"].dark[disabled], input[type="date"].dark[disabled], input[type="email"].dark[disabled], input[type="month"].dark[disabled], input[type="number"].dark[disabled], input[type="password"].dark[disabled], input[type="search"].dark[disabled], input[type="tel"].dark[disabled], input[type="text"].dark[disabled], input[type="time"].dark[disabled], input[type="url "].dark[disabled], input[type="week"].dark[disabled] { pointer-events: none; opacity: 0.7; } input[type="color"].success, input[type="date"].success, input[type="email"].success, input[type="month"].success, input[type="number"].success, input[type="password"].success, input[type="search"].success, input[type="tel"].success, input[type="text"].success, input[type="time"].success, input[type="url "].success, input[type="week"].success { padding: 8px; border-radius: 8px; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #29b765, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].success::placeholder, input[type="date"].success::placeholder, input[type="email"].success::placeholder, input[type="month"].success::placeholder, input[type="number"].success::placeholder, input[type="password"].success::placeholder, input[type="search"].success::placeholder, input[type="tel"].success::placeholder, input[type="text"].success::placeholder, input[type="time"].success::placeholder, input[type="url "].success::placeholder, input[type="week"].success::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].success:focus, input[type="date"].success:focus, input[type="email"].success:focus, input[type="month"].success:focus, input[type="number"].success:focus, input[type="password"].success:focus, input[type="search"].success:focus, input[type="tel"].success:focus, input[type="text"].success:focus, input[type="time"].success:focus, input[type="url "].success:focus, input[type="week"].success:focus, input[type="color"].success.active, input[type="date"].success.active, input[type="email"].success.active, input[type="month"].success.active, input[type="number"].success.active, input[type="password"].success.active, input[type="search"].success.active, input[type="tel"].success.active, input[type="text"].success.active, input[type="time"].success.active, input[type="url "].success.active, input[type="week"].success.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #208e4e, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].success:focus::placeholder, input[type="date"].success:focus::placeholder, input[type="email"].success:focus::placeholder, input[type="month"].success:focus::placeholder, input[type="number"].success:focus::placeholder, input[type="password"].success:focus::placeholder, input[type="search"].success:focus::placeholder, input[type="tel"].success:focus::placeholder, input[type="text"].success:focus::placeholder, input[type="time"].success:focus::placeholder, input[type="url "].success:focus::placeholder, input[type="week"].success:focus::placeholder, input[type="color"].success.active::placeholder, input[type="date"].success.active::placeholder, input[type="email"].success.active::placeholder, input[type="month"].success.active::placeholder, input[type="number"].success.active::placeholder, input[type="password"].success.active::placeholder, input[type="search"].success.active::placeholder, input[type="tel"].success.active::placeholder, input[type="text"].success.active::placeholder, input[type="time"].success.active::placeholder, input[type="url "].success.active::placeholder, input[type="week"].success.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].success.disabled, input[type="date"].success.disabled, input[type="email"].success.disabled, input[type="month"].success.disabled, input[type="number"].success.disabled, input[type="password"].success.disabled, input[type="search"].success.disabled, input[type="tel"].success.disabled, input[type="text"].success.disabled, input[type="time"].success.disabled, input[type="url "].success.disabled, input[type="week"].success.disabled, input[type="color"].success[disabled], input[type="date"].success[disabled], input[type="email"].success[disabled], input[type="month"].success[disabled], input[type="number"].success[disabled], input[type="password"].success[disabled], input[type="search"].success[disabled], input[type="tel"].success[disabled], input[type="text"].success[disabled], input[type="time"].success[disabled], input[type="url "].success[disabled], input[type="week"].success[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } input[type="color"].warning, input[type="date"].warning, input[type="email"].warning, input[type="month"].warning, input[type="number"].warning, input[type="password"].warning, input[type="search"].warning, input[type="tel"].warning, input[type="text"].warning, input[type="time"].warning, input[type="url "].warning, input[type="week"].warning { padding: 8px; border-radius: 8px; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #dab10d, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].warning::placeholder, input[type="date"].warning::placeholder, input[type="email"].warning::placeholder, input[type="month"].warning::placeholder, input[type="number"].warning::placeholder, input[type="password"].warning::placeholder, input[type="search"].warning::placeholder, input[type="tel"].warning::placeholder, input[type="text"].warning::placeholder, input[type="time"].warning::placeholder, input[type="url "].warning::placeholder, input[type="week"].warning::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].warning:focus, input[type="date"].warning:focus, input[type="email"].warning:focus, input[type="month"].warning:focus, input[type="number"].warning:focus, input[type="password"].warning:focus, input[type="search"].warning:focus, input[type="tel"].warning:focus, input[type="text"].warning:focus, input[type="time"].warning:focus, input[type="url "].warning:focus, input[type="week"].warning:focus, input[type="color"].warning.active, input[type="date"].warning.active, input[type="email"].warning.active, input[type="month"].warning.active, input[type="number"].warning.active, input[type="password"].warning.active, input[type="search"].warning.active, input[type="tel"].warning.active, input[type="text"].warning.active, input[type="time"].warning.active, input[type="url "].warning.active, input[type="week"].warning.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #aa8a0a, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].warning:focus::placeholder, input[type="date"].warning:focus::placeholder, input[type="email"].warning:focus::placeholder, input[type="month"].warning:focus::placeholder, input[type="number"].warning:focus::placeholder, input[type="password"].warning:focus::placeholder, input[type="search"].warning:focus::placeholder, input[type="tel"].warning:focus::placeholder, input[type="text"].warning:focus::placeholder, input[type="time"].warning:focus::placeholder, input[type="url "].warning:focus::placeholder, input[type="week"].warning:focus::placeholder, input[type="color"].warning.active::placeholder, input[type="date"].warning.active::placeholder, input[type="email"].warning.active::placeholder, input[type="month"].warning.active::placeholder, input[type="number"].warning.active::placeholder, input[type="password"].warning.active::placeholder, input[type="search"].warning.active::placeholder, input[type="tel"].warning.active::placeholder, input[type="text"].warning.active::placeholder, input[type="time"].warning.active::placeholder, input[type="url "].warning.active::placeholder, input[type="week"].warning.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].warning.disabled, input[type="date"].warning.disabled, input[type="email"].warning.disabled, input[type="month"].warning.disabled, input[type="number"].warning.disabled, input[type="password"].warning.disabled, input[type="search"].warning.disabled, input[type="tel"].warning.disabled, input[type="text"].warning.disabled, input[type="time"].warning.disabled, input[type="url "].warning.disabled, input[type="week"].warning.disabled, input[type="color"].warning[disabled], input[type="date"].warning[disabled], input[type="email"].warning[disabled], input[type="month"].warning[disabled], input[type="number"].warning[disabled], input[type="password"].warning[disabled], input[type="search"].warning[disabled], input[type="tel"].warning[disabled], input[type="text"].warning[disabled], input[type="time"].warning[disabled], input[type="url "].warning[disabled], input[type="week"].warning[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } input[type="color"].error, input[type="date"].error, input[type="email"].error, input[type="month"].error, input[type="number"].error, input[type="password"].error, input[type="search"].error, input[type="tel"].error, input[type="text"].error, input[type="time"].error, input[type="url "].error, input[type="week"].error { padding: 8px; border-radius: 8px; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #e43725, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].error::placeholder, input[type="date"].error::placeholder, input[type="email"].error::placeholder, input[type="month"].error::placeholder, input[type="number"].error::placeholder, input[type="password"].error::placeholder, input[type="search"].error::placeholder, input[type="tel"].error::placeholder, input[type="text"].error::placeholder, input[type="time"].error::placeholder, input[type="url "].error::placeholder, input[type="week"].error::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].error:focus, input[type="date"].error:focus, input[type="email"].error:focus, input[type="month"].error:focus, input[type="number"].error:focus, input[type="password"].error:focus, input[type="search"].error:focus, input[type="tel"].error:focus, input[type="text"].error:focus, input[type="time"].error:focus, input[type="url "].error:focus, input[type="week"].error:focus, input[type="color"].error.active, input[type="date"].error.active, input[type="email"].error.active, input[type="month"].error.active, input[type="number"].error.active, input[type="password"].error.active, input[type="search"].error.active, input[type="tel"].error.active, input[type="text"].error.active, input[type="time"].error.active, input[type="url "].error.active, input[type="week"].error.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #bf2718, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].error:focus::placeholder, input[type="date"].error:focus::placeholder, input[type="email"].error:focus::placeholder, input[type="month"].error:focus::placeholder, input[type="number"].error:focus::placeholder, input[type="password"].error:focus::placeholder, input[type="search"].error:focus::placeholder, input[type="tel"].error:focus::placeholder, input[type="text"].error:focus::placeholder, input[type="time"].error:focus::placeholder, input[type="url "].error:focus::placeholder, input[type="week"].error:focus::placeholder, input[type="color"].error.active::placeholder, input[type="date"].error.active::placeholder, input[type="email"].error.active::placeholder, input[type="month"].error.active::placeholder, input[type="number"].error.active::placeholder, input[type="password"].error.active::placeholder, input[type="search"].error.active::placeholder, input[type="tel"].error.active::placeholder, input[type="text"].error.active::placeholder, input[type="time"].error.active::placeholder, input[type="url "].error.active::placeholder, input[type="week"].error.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].error.disabled, input[type="date"].error.disabled, input[type="email"].error.disabled, input[type="month"].error.disabled, input[type="number"].error.disabled, input[type="password"].error.disabled, input[type="search"].error.disabled, input[type="tel"].error.disabled, input[type="text"].error.disabled, input[type="time"].error.disabled, input[type="url "].error.disabled, input[type="week"].error.disabled, input[type="color"].error[disabled], input[type="date"].error[disabled], input[type="email"].error[disabled], input[type="month"].error[disabled], input[type="number"].error[disabled], input[type="password"].error[disabled], input[type="search"].error[disabled], input[type="tel"].error[disabled], input[type="text"].error[disabled], input[type="time"].error[disabled], input[type="url "].error[disabled], input[type="week"].error[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } input[type="color"].info, input[type="date"].info, input[type="email"].info, input[type="month"].info, input[type="number"].info, input[type="password"].info, input[type="search"].info, input[type="tel"].info, input[type="text"].info, input[type="time"].info, input[type="url "].info, input[type="week"].info { padding: 8px; border-radius: 8px; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #6ec5ff, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].info::placeholder, input[type="date"].info::placeholder, input[type="email"].info::placeholder, input[type="month"].info::placeholder, input[type="number"].info::placeholder, input[type="password"].info::placeholder, input[type="search"].info::placeholder, input[type="tel"].info::placeholder, input[type="text"].info::placeholder, input[type="time"].info::placeholder, input[type="url "].info::placeholder, input[type="week"].info::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].info:focus, input[type="date"].info:focus, input[type="email"].info:focus, input[type="month"].info:focus, input[type="number"].info:focus, input[type="password"].info:focus, input[type="search"].info:focus, input[type="tel"].info:focus, input[type="text"].info:focus, input[type="time"].info:focus, input[type="url "].info:focus, input[type="week"].info:focus, input[type="color"].info.active, input[type="date"].info.active, input[type="email"].info.active, input[type="month"].info.active, input[type="number"].info.active, input[type="password"].info.active, input[type="search"].info.active, input[type="tel"].info.active, input[type="text"].info.active, input[type="time"].info.active, input[type="url "].info.active, input[type="week"].info.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #3bb0ff, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } input[type="color"].info:focus::placeholder, input[type="date"].info:focus::placeholder, input[type="email"].info:focus::placeholder, input[type="month"].info:focus::placeholder, input[type="number"].info:focus::placeholder, input[type="password"].info:focus::placeholder, input[type="search"].info:focus::placeholder, input[type="tel"].info:focus::placeholder, input[type="text"].info:focus::placeholder, input[type="time"].info:focus::placeholder, input[type="url "].info:focus::placeholder, input[type="week"].info:focus::placeholder, input[type="color"].info.active::placeholder, input[type="date"].info.active::placeholder, input[type="email"].info.active::placeholder, input[type="month"].info.active::placeholder, input[type="number"].info.active::placeholder, input[type="password"].info.active::placeholder, input[type="search"].info.active::placeholder, input[type="tel"].info.active::placeholder, input[type="text"].info.active::placeholder, input[type="time"].info.active::placeholder, input[type="url "].info.active::placeholder, input[type="week"].info.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } input[type="color"].info.disabled, input[type="date"].info.disabled, input[type="email"].info.disabled, input[type="month"].info.disabled, input[type="number"].info.disabled, input[type="password"].info.disabled, input[type="search"].info.disabled, input[type="tel"].info.disabled, input[type="text"].info.disabled, input[type="time"].info.disabled, input[type="url "].info.disabled, input[type="week"].info.disabled, input[type="color"].info[disabled], input[type="date"].info[disabled], input[type="email"].info[disabled], input[type="month"].info[disabled], input[type="number"].info[disabled], input[type="password"].info[disabled], input[type="search"].info[disabled], input[type="tel"].info[disabled], input[type="text"].info[disabled], input[type="time"].info[disabled], input[type="url "].info[disabled], input[type="week"].info[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } .genius-form-group { position: relative; } .genius-form-group .label { margin-bottom: 5px; display: block; } .genius-form-group .validation-message-success { position: relative; display: block; width: 100%; left: 0px; bottom: 0; font-size: 13px; padding-top: 5px; color: #2ecc71; } .genius-form-group .validation-message-error { position: relative; display: block; width: 100%; left: 0px; bottom: 0; font-size: 13px; padding-top: 5px; color: #e74c3c; } .genius-form-group .validation-message-warning { position: relative; display: block; width: 100%; left: 0px; bottom: 0; font-size: 13px; padding-top: 5px; color: #f1c40f; } .genius-form-group .validation-message-info { position: relative; display: block; width: 100%; left: 0px; bottom: 0; font-size: 13px; padding-top: 5px; color: #88cfff; } textarea { border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); min-height: 80px; width: 100%; padding: 8px; border-radius: 8px; resize: vertical; box-sizing: border-box; } textarea::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea:focus, textarea.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #e8e8e8, 0 4px 10px 0 rgba(46, 49, 52, 0.2); } textarea:focus::placeholder, textarea.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.disabled, textarea[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; resize: none; } textarea.dark { border: none; background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); min-height: 80px; width: 100%; padding: 8px; border-radius: 8px; resize: vertical; box-sizing: border-box; } textarea.dark::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.dark:focus, textarea.dark.active { outline: none; border: none; background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #dcdcdc, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.dark:focus::placeholder, textarea.dark.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.success { background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); min-height: 80px; width: 100%; padding: 8px; border-radius: 8px; resize: vertical; box-sizing: border-box; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #29b765, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.success::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.success::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.success:focus, textarea.success.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #208e4e, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.success:focus::placeholder, textarea.success.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.success.disabled, textarea.success[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } textarea.warning { background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); min-height: 80px; width: 100%; padding: 8px; border-radius: 8px; resize: vertical; box-sizing: border-box; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #dab10d, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.warning::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.warning::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.warning:focus, textarea.warning.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #aa8a0a, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.warning:focus::placeholder, textarea.warning.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.warning.disabled, textarea.warning[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } textarea.error { background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); min-height: 80px; width: 100%; padding: 8px; border-radius: 8px; resize: vertical; box-sizing: border-box; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #e43725, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.error::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.error::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.error:focus, textarea.error.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #bf2718, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.error:focus::placeholder, textarea.error.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.error.disabled, textarea.error[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } textarea.info { background: #4a4f55; color: white; box-shadow: 0 0px 0px 1px #f5f5f5, 0 4px 10px 0 rgba(74, 79, 85, 0.2); min-height: 80px; width: 100%; padding: 8px; border-radius: 8px; resize: vertical; box-sizing: border-box; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #6ec5ff, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.info::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.info::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.info:focus, textarea.info.active { outline: none; border: none; background: white; color: black; box-shadow: 0 0px 0px 1px #3bb0ff, 0 4px 10px 0 rgba(74, 79, 85, 0.2); } textarea.info:focus::placeholder, textarea.info.active::placeholder { color: #c2c2c2; font-size: 0.9rem; font-family: "lato", sans-serif; } textarea.info.disabled, textarea.info[disabled] { background: #f5f5f5; pointer-events: none; opacity: 0.7; } /* --- name: Radio category: Input --- ```types.html













``` */ .genius-radio-container label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-radio-container label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #e4b202; border-radius: 50%; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-radio-container label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-radio-container label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-radio-container input[type="radio"] { display: none; } .genius-radio-container input[type="radio"]:checked + label span { background-color: #fdc602; transform: scale(1.25); } .genius-radio-container input[type="radio"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container input[type="radio"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container input[type="radio"].disabled, .genius-radio-container input[type="radio"][disabled] { pointer-events: none; opacity: 0.5; } .genius-radio-container input[type="radio"].disabled + label, .genius-radio-container input[type="radio"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-radio-container input[type="radio"].disabled + label span, .genius-radio-container input[type="radio"][disabled] + label span { opacity: 0.5; } .genius-radio-container.dark label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-radio-container.dark label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #3e4247; border-radius: 50%; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-radio-container.dark label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-radio-container.dark label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-radio-container.dark input[type="radio"] { display: none; } .genius-radio-container.dark input[type="radio"]:checked + label span { background-color: #4a4f55; transform: scale(1.25); } .genius-radio-container.dark input[type="radio"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.dark input[type="radio"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.dark input[type="radio"].disabled, .genius-radio-container.dark input[type="radio"][disabled] { pointer-events: none; opacity: 0.5; } .genius-radio-container.dark input[type="radio"].disabled + label, .genius-radio-container.dark input[type="radio"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-radio-container.dark input[type="radio"].disabled + label span, .genius-radio-container.dark input[type="radio"][disabled] + label span { opacity: 0.5; } .genius-radio-container.success label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-radio-container.success label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #29b765; border-radius: 50%; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-radio-container.success label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-radio-container.success label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-radio-container.success input[type="radio"] { display: none; } .genius-radio-container.success input[type="radio"]:checked + label span { background-color: #2ecc71; transform: scale(1.25); } .genius-radio-container.success input[type="radio"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.success input[type="radio"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.success input[type="radio"].disabled, .genius-radio-container.success input[type="radio"][disabled] { pointer-events: none; opacity: 0.5; } .genius-radio-container.success input[type="radio"].disabled + label, .genius-radio-container.success input[type="radio"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-radio-container.success input[type="radio"].disabled + label span, .genius-radio-container.success input[type="radio"][disabled] + label span { opacity: 0.5; } .genius-radio-container.warning label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-radio-container.warning label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #dab10d; border-radius: 50%; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-radio-container.warning label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-radio-container.warning label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-radio-container.warning input[type="radio"] { display: none; } .genius-radio-container.warning input[type="radio"]:checked + label span { background-color: #f1c40f; transform: scale(1.25); } .genius-radio-container.warning input[type="radio"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.warning input[type="radio"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.warning input[type="radio"].disabled, .genius-radio-container.warning input[type="radio"][disabled] { pointer-events: none; opacity: 0.5; } .genius-radio-container.warning input[type="radio"].disabled + label, .genius-radio-container.warning input[type="radio"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-radio-container.warning input[type="radio"].disabled + label span, .genius-radio-container.warning input[type="radio"][disabled] + label span { opacity: 0.5; } .genius-radio-container.error label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-radio-container.error label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #e43725; border-radius: 50%; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-radio-container.error label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-radio-container.error label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-radio-container.error input[type="radio"] { display: none; } .genius-radio-container.error input[type="radio"]:checked + label span { background-color: #e74c3c; transform: scale(1.25); } .genius-radio-container.error input[type="radio"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.error input[type="radio"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.error input[type="radio"].disabled, .genius-radio-container.error input[type="radio"][disabled] { pointer-events: none; opacity: 0.5; } .genius-radio-container.error input[type="radio"].disabled + label, .genius-radio-container.error input[type="radio"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-radio-container.error input[type="radio"].disabled + label span, .genius-radio-container.error input[type="radio"][disabled] + label span { opacity: 0.5; } .genius-radio-container.info label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-radio-container.info label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #6ec5ff; border-radius: 50%; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-radio-container.info label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-radio-container.info label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-radio-container.info input[type="radio"] { display: none; } .genius-radio-container.info input[type="radio"]:checked + label span { background-color: #88cfff; transform: scale(1.25); } .genius-radio-container.info input[type="radio"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.info input[type="radio"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-radio-container.info input[type="radio"].disabled, .genius-radio-container.info input[type="radio"][disabled] { pointer-events: none; opacity: 0.5; } .genius-radio-container.info input[type="radio"].disabled + label, .genius-radio-container.info input[type="radio"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-radio-container.info input[type="radio"].disabled + label span, .genius-radio-container.info input[type="radio"][disabled] + label span { opacity: 0.5; } /* --- name: Checkbox category: Input --- ```types.html













``` */ .genius-checkbox-container label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-checkbox-container label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #e4b202; border-radius: 4px; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-checkbox-container label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-checkbox-container label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-checkbox-container input[type="checkbox"] { display: none; } .genius-checkbox-container input[type="checkbox"]:checked + label span { background-color: #fdc602; transform: scale(1.25); } .genius-checkbox-container input[type="checkbox"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container input[type="checkbox"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container input[type="checkbox"].disabled, .genius-checkbox-container input[type="checkbox"][disabled] { pointer-events: none; opacity: 0.5; } .genius-checkbox-container input[type="checkbox"].disabled + label, .genius-checkbox-container input[type="checkbox"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-checkbox-container input[type="checkbox"].disabled + label span, .genius-checkbox-container input[type="checkbox"][disabled] + label span { opacity: 0.5; } .genius-checkbox-container.dark label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-checkbox-container.dark label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #3e4247; border-radius: 4px; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-checkbox-container.dark label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-checkbox-container.dark label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-checkbox-container.dark input[type="checkbox"] { display: none; } .genius-checkbox-container.dark input[type="checkbox"]:checked + label span { background-color: #4a4f55; transform: scale(1.25); } .genius-checkbox-container.dark input[type="checkbox"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.dark input[type="checkbox"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.dark input[type="checkbox"].disabled, .genius-checkbox-container.dark input[type="checkbox"][disabled] { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.dark input[type="checkbox"].disabled + label, .genius-checkbox-container.dark input[type="checkbox"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.dark input[type="checkbox"].disabled + label span, .genius-checkbox-container.dark input[type="checkbox"][disabled] + label span { opacity: 0.5; } .genius-checkbox-container.success label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-checkbox-container.success label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #29b765; border-radius: 4px; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-checkbox-container.success label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-checkbox-container.success label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-checkbox-container.success input[type="checkbox"] { display: none; } .genius-checkbox-container.success input[type="checkbox"]:checked + label span { background-color: #2ecc71; transform: scale(1.25); } .genius-checkbox-container.success input[type="checkbox"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.success input[type="checkbox"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.success input[type="checkbox"].disabled, .genius-checkbox-container.success input[type="checkbox"][disabled] { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.success input[type="checkbox"].disabled + label, .genius-checkbox-container.success input[type="checkbox"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.success input[type="checkbox"].disabled + label span, .genius-checkbox-container.success input[type="checkbox"][disabled] + label span { opacity: 0.5; } .genius-checkbox-container.warning label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-checkbox-container.warning label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #dab10d; border-radius: 4px; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-checkbox-container.warning label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-checkbox-container.warning label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-checkbox-container.warning input[type="checkbox"] { display: none; } .genius-checkbox-container.warning input[type="checkbox"]:checked + label span { background-color: #f1c40f; transform: scale(1.25); } .genius-checkbox-container.warning input[type="checkbox"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.warning input[type="checkbox"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.warning input[type="checkbox"].disabled, .genius-checkbox-container.warning input[type="checkbox"][disabled] { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.warning input[type="checkbox"].disabled + label, .genius-checkbox-container.warning input[type="checkbox"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.warning input[type="checkbox"].disabled + label span, .genius-checkbox-container.warning input[type="checkbox"][disabled] + label span { opacity: 0.5; } .genius-checkbox-container.error label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-checkbox-container.error label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #e43725; border-radius: 4px; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-checkbox-container.error label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-checkbox-container.error label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-checkbox-container.error input[type="checkbox"] { display: none; } .genius-checkbox-container.error input[type="checkbox"]:checked + label span { background-color: #e74c3c; transform: scale(1.25); } .genius-checkbox-container.error input[type="checkbox"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.error input[type="checkbox"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.error input[type="checkbox"].disabled, .genius-checkbox-container.error input[type="checkbox"][disabled] { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.error input[type="checkbox"].disabled + label, .genius-checkbox-container.error input[type="checkbox"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.error input[type="checkbox"].disabled + label span, .genius-checkbox-container.error input[type="checkbox"][disabled] + label span { opacity: 0.5; } .genius-checkbox-container.info label { display: inline-block; color: inherit; cursor: pointer; position: relative; } .genius-checkbox-container.info label span { display: inline-block; position: relative; background-color: transparent; width: 20px; height: 20px; transform-origin: center; border: 2px solid #6ec5ff; border-radius: 4px; vertical-align: -6px; margin-right: 10px; transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89); } .genius-checkbox-container.info label span:before { content: ""; width: 0px; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(45deg); top: 10px; left: 7px; transition: width 50ms ease 50ms; transform-origin: 0% 0%; } .genius-checkbox-container.info label span:after { content: ""; width: 0; height: 2px; border-radius: 2px; background: white; position: absolute; transform: rotate(305deg); top: 14px; left: 8px; transition: width 50ms ease; transform-origin: 0% 0%; } .genius-checkbox-container.info input[type="checkbox"] { display: none; } .genius-checkbox-container.info input[type="checkbox"]:checked + label span { background-color: #88cfff; transform: scale(1.25); } .genius-checkbox-container.info input[type="checkbox"]:checked + label span:after { width: 10px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.info input[type="checkbox"]:checked + label span:before { width: 5px; background: white; transition: width 150ms ease 100ms; } .genius-checkbox-container.info input[type="checkbox"].disabled, .genius-checkbox-container.info input[type="checkbox"][disabled] { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.info input[type="checkbox"].disabled + label, .genius-checkbox-container.info input[type="checkbox"][disabled] + label { pointer-events: none; opacity: 0.5; } .genius-checkbox-container.info input[type="checkbox"].disabled + label span, .genius-checkbox-container.info input[type="checkbox"][disabled] + label span { opacity: 0.5; } /* --- name: Background Color category: Utilities --- ```types.html
Background Color - White

Background Color - Main

Background Color - Dark

Background Color - Success

Background Color - Warning

Background Color - Error

Background Color - Dark
``` */ .genius-bg-white { background: white; background-color: white; color: black; } .genius-bg-main { background: #fdc602; background-color: #fdc602; color: black; } .genius-bg-dark { background: #4a4f55; background-color: #4a4f55; color: white; } .genius-bg-success { background: #2ecc71; background-color: #2ecc71; color: black; } .genius-bg-warning { background: #f1c40f; background-color: #f1c40f; color: black; } .genius-bg-error { background: #e74c3c; background-color: #e74c3c; color: white; } .genius-bg-info { background: #88cfff; background-color: #88cfff; color: black; } .genius-color-white { color: white; } .genius-color-main { color: #fdc602; } .genius-color-dark { color: #4a4f55; } .genius-color-success { color: #2ecc71; } .genius-color-warning { color: #f1c40f; } .genius-color-error { color: #e74c3c; } .genius-color-info { color: #88cfff; } .genius-border-white { box-shadow: 0 0px 0px 1px white; } .genius-border-main { box-shadow: 0 0px 0px 1px #fdc602; } .genius-border-dark { box-shadow: 0 0px 0px 1px #4a4f55; } .genius-border-success { box-shadow: 0 0px 0px 1px #2ecc71; } .genius-border-warning { box-shadow: 0 0px 0px 1px #f1c40f; } .genius-border-error { box-shadow: 0 0px 0px 1px #e74c3c; } .genius-border-info { box-shadow: 0 0px 0px 1px #88cfff; } /* --- name: Font Color category: Utilities --- ```types.html
Font Color - White

Font Color - Main

Font Color - Dark

Font Color - Success

Font Color- Warning

Font Color - Error

Font Color - Info
``` */ /* --- name: Border Color category: Utilities --- ```types.html
Border Color - White

Border Color - Main

Border Color - Dark

Border Color - Success

Border Color - Warning

Border Color - Error

Border Color - Info
``` */