.sky-form .toggle i.i:before {
    background-color: #6dc5dd;
}

.sky-form .input:hover input,
.sky-form .select:hover select,
.sky-form .textarea:hover textarea,
.sky-form .radio:hover i.i,
.sky-form .checkbox:hover i.i,
.sky-form .toggle:hover i.i {
    border-color: #dc9596;
}

.sky-form .input input:focus,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .radio input:focus + i.i,
.sky-form .checkbox input:focus + i.i,
.sky-form .toggle input:focus + i.i {
    border-color: #6dc5dd;
}

.sky-form .radio input + i.i:after {
    background-color: #6dc5dd;
}

.sky-form .checkbox input + i.i:after {
    color: #6dc5dd;
}

.sky-form .radio input:checked + i.i,
.sky-form .checkbox input:checked + i.i,
.sky-form .toggle input:checked + i.i {
    border-color: #6dc5dd;
}

.sky-form {
    margin: 0;
    outline: none;
}

.sky-form * {
    margin: 0;
    padding: 0;
}

.sky-form header {
    display: block;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 248, 248, 0.9);
    font-size: 25px;
    font-weight: 300;
    color: #232323;
    height: inherit;
    box-shadow: inherit;
    position: unset;
    width: unset;
}

.sky-form fieldset {
    display: block;
    padding: 25px 30px 5px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
}

.sky-form fieldset + fieldset {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sky-form section {
    margin-bottom: 20px;
}

.sky-form footer {
    display: block;
    padding: 15px 30px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 248, 248, 0.9);
}

.sky-form footer:after {
    content: "";
    display: table;
    clear: both;
}

.sky-form a {
    color: #31344b;
}

.sky-form .label {
    display: block;
    margin-bottom: 6px;
    line-height: 19px;
}

.sky-form .label.col {
    margin: 0;
    padding-top: 10px;
}

.sky-form .note {
    margin-top: 6px;
    padding: 0 1px;
    line-height: 15px;
    color: #999;
}

.sky-form .input,
.sky-form .select,
.sky-form .textarea,
.sky-form .radio,
.sky-form .checkbox,
.sky-form .toggle,
.sky-form .button {
    position: relative;
    display: block;
}

.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 30px;
    outline: none;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    background: #fff;
    color: #404040;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: normal;
    line-height: 30px;
}

.sky-form .input input {
    padding: 0px 10px;
}

.sky-form .select select {
    padding: 0px 10px;
}

/* file inputs */

.sky-form .input-file .button {
    position: absolute;
    border-radius: 0;
    top: 3px;
    right: 3px;
    float: none;
    height: 24px;
    margin: 0;
    padding: 0;
    line-height: 24px;
    background: #555;
    color: white;
}

.sky-form .input-file .button:hover {
    box-shadow: none;
}

.sky-form .input-file .button input {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 30px;
    cursor: pointer;
    opacity: 0;
}

/* selects */

.sky-form .select i.i {
    position: absolute;
    top: 9px;
    right: 10px;
    width: 1px;
    height: 12px;
}

.sky-form .select i.i:after,
.sky-form .select i.i:before {
    content: "";
    position: absolute;
    right: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sky-form .select i.i:after {
    bottom: 0;
    border-top: 4px solid #404040;
}

.sky-form .select i.i:before {
    top: 0;
    border-bottom: 4px solid #404040;
}

.sky-form .select-multiple select {
    height: auto;
}

/* textareas */

.sky-form .textarea textarea {
    height: auto;
    resize: none;
}

.sky-form .textarea-resizable textarea {
    resize: vertical;
}

.sky-form .textarea-expandable textarea {
    height: 39px;
}

.sky-form .textarea-expandable textarea:focus {
    height: auto;
}

/* radios and checkboxes */

.sky-form .radio,
.sky-form .checkbox {
    padding-left: 22px;
    font-weight: normal;
    line-height: 22px;
    color: #404040;
    cursor: pointer;
}

.sky-form .radio:last-child,
.sky-form .checkbox:last-child {
    margin-bottom: 0;
}

.sky-form .radio input,
.sky-form .checkbox input {
    position: absolute;
    left: -9999px;
}

.sky-form .radio i.i,
.sky-form .checkbox i.i {
    position: absolute;
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    outline: none;
    border-width: 1px;
    border-style: solid;
    background: #fff;
}

.sky-form .radio i.i {
    top: 3px;
}

.sky-form .checkbox i.i {
    top: 4px;
}

.sky-form .radio i.i {
    border-radius: 50%;
}

.sky-form .radio input + i.i:after,
.sky-form .checkbox input + i.i:after {
    position: absolute;
    opacity: 0;
    transition: opacity 0.1s;
    -o-transition: opacity 0.1s;
    -ms-transition: opacity 0.1s;
    -moz-transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}

.sky-form .radio input + i.i:after {
    content: "";
    top: 4px;
    left: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.sky-form .checkbox input + i.i:after {
    content: "\f00c";
    top: -1px;
    left: -1px;
    width: 15px;
    height: 15px;
    font: normal 10px/14px FontAwesome;
    text-align: center;
}

.sky-form .radio input:checked + i.i:after,
.sky-form .checkbox input:checked + i.i:after {
    opacity: 1;
}

.sky-form .inline-group {
    margin: 0 -30px -4px 0;
}

.sky-form .inline-group:after {
    content: "";
    display: table;
    clear: both;
}

.sky-form .inline-group .radio,
.sky-form .inline-group .checkbox {
    float: left;
    margin-right: 30px;
}

.sky-form .inline-group .radio:last-child,
.sky-form .inline-group .checkbox:last-child {
    margin-bottom: 4px;
}

/* toggles */

.sky-form .toggle {
    padding-right: 60px;
    font-weight: normal;
    line-height: 26px;
    color: #404040;
    cursor: pointer;
}

.sky-form .toggle:last-child {
    margin-bottom: 0;
}

.sky-form .toggle input {
    position: absolute;
    left: -9999px;
}

.sky-form .toggle i.i {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    display: block;
    width: 45px;
    height: 18px;
    border-width: 1px;
    border-style: solid;
    border-radius: 12px;
    background: #fff;
}

.sky-form .toggle i.i:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 30px;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 1;
    transition: right 0.2s;
    -o-transition: right 0.2s;
    -ms-transition: right 0.2s;
    -moz-transition: right 0.2s;
    -webkit-transition: right 0.2s;
}

.sky-form .toggle input:checked + i.i:before {
    right: 7px;
}

.sky-form .toggle i.i:after {
    content: "No";
    text-align: right;
    position: absolute;
    top: 1px;
    right: 10px;
    left: 10px;
    font-style: normal;
    font-size: 9px;
    line-height: 13px;
    font-weight: 700;
    color: #5f5f5f;
}

.sky-form .toggle input:checked + i.i:after {
    content: "Yes";
    text-align: left;
}

/* buttons */
.sky-form .button {
    float: right;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    margin: 15px 0 0 10px;
    padding: 0 15px;
    text-align: center;
    min-width: 75px;
    outline: none;
    border: 0;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.sky-form [class^="fa-"],
.ui-datepicker [class^="fa-"] {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
}

.sky-form .icon-append,
.sky-form .icon-prepend {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
}

.sky-form .icon-append {
    right: 5px;
}

.sky-form .icon-prepend {
    left: 5px;
    padding-right: 3px;
    border-right-width: 1px;
    border-right-style: solid;
}

.sky-form .input .icon-prepend + input,
.sky-form .textarea .icon-prepend + textarea {
    padding-left: 26px;
}

.sky-form .input .icon-append + input,
.sky-form .textarea .icon-append + textarea {
    padding-right: 26px;
}

.sky-form .input .icon-prepend + .icon-append + input,
.sky-form .textarea .icon-prepend + .icon-append + textarea {
    padding-left: 26px;
}

/* grid */

/*
.sky-form .row { margin: 0 -15px 15px -15px; }
.sky-form .row:after { content: ''; display: table; clear: both; }
.sky-form .col { float: left; min-height: 1px; padding-right: 15px; padding-left: 15px; box-sizing: border-box; -moz-box-sizing: border-box; width:100%; }
.sky-form .col-1 { width: 8.33%; }
.sky-form .col-2 { width: 16.66%; }
.sky-form .col-3 { width: 25%; }
.sky-form .col-4 { width: 33.33%; }
.sky-form .col-5 { width: 41.66%; }
.sky-form .col-6 { width: 50%; }
.sky-form .col-8 { width: 66.67%; }
.sky-form .col-9 { width: 75%; }
.sky-form .col-10 { width: 83.33%; }

@media screen and (max-width: 600px) {
	.sky-form .col { float: none; width: 100%; }
}
*/

/* tooltips */

.sky-form .sky-tooltip {
    position: absolute;
    z-index: 1;
    left: -9999px;
    padding: 2px 8px 3px;
    line-height: 16px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    opacity: 0;
    transition: margin 0.3s, opacity 0.3s;
    -o-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -webkit-transition: margin 0.3s, opacity 0.3s;
}

.sky-form .sky-tooltip:after {
    content: "";
    position: absolute;
}

.sky-form .input input:focus + .sky-tooltip,
.sky-form .textarea textarea:focus + .sky-tooltip {
    opacity: 1;
}

.sky-form .sky-tooltip-top-right {
    bottom: 100%;
    margin-bottom: 15px;
}

.sky-form .sky-tooltip-top-right:after {
    top: 100%;
    right: 16px;
    border-top: 4px solid rgba(0, 0, 0, 0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .sky-tooltip-top-right,
.sky-form .textarea textarea:focus + .sky-tooltip-top-right {
    right: 0;
    left: auto;
    margin-bottom: 5px;
}

.sky-form .sky-tooltip-top-left {
    bottom: 100%;
    margin-bottom: 15px;
}

.sky-form .sky-tooltip-top-left:after {
    top: 100%;
    left: 16px;
    border-top: 4px solid rgba(0, 0, 0, 0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .sky-tooltip-top-left,
.sky-form .textarea textarea:focus + .sky-tooltip-top-left {
    right: auto;
    left: 0;
    margin-bottom: 5px;
}

.sky-form .sky-tooltip-right {
    top: 9px;
    white-space: nowrap;
    margin-left: 15px;
}

.sky-form .sky-tooltip-right:after {
    top: 6px;
    right: 100%;
    border-top: 4px solid transparent;
    border-right: 4px solid rgba(0, 0, 0, 0.9);
    border-bottom: 4px solid transparent;
}

.sky-form .input input:focus + .sky-tooltip-right,
.sky-form .textarea textarea:focus + .sky-tooltip-right {
    left: 100%;
    margin-left: 5px;
}

.sky-form .sky-tooltip-left {
    top: 9px;
    white-space: nowrap;
    margin-right: 15px;
}

.sky-form .sky-tooltip-left:after {
    top: 6px;
    left: 100%;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid rgba(0, 0, 0, 0.9);
}

.sky-form .input input:focus + .sky-tooltip-left,
.sky-form .textarea textarea:focus + .sky-tooltip-left {
    right: 100%;
    left: auto;
    margin-right: 5px;
}

.sky-form .sky-tooltip-bottom-right {
    top: 100%;
    margin-top: 15px;
}

.sky-form .sky-tooltip-bottom-right:after {
    bottom: 100%;
    right: 16px;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9);
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .sky-tooltip-bottom-right,
.sky-form .textarea textarea:focus + .sky-tooltip-bottom-right {
    right: 0;
    left: auto;
    margin-top: 5px;
}

.sky-form .sky-tooltip-bottom-left {
    top: 100%;
    margin-top: 15px;
}

.sky-form .sky-tooltip-bottom-left:after {
    bottom: 100%;
    left: 16px;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9);
    border-left: 4px solid transparent;
}

.sky-form .input input:focus + .sky-tooltip-bottom-left,
.sky-form .textarea textarea:focus + .sky-tooltip-bottom-left {
    right: auto;
    left: 0;
    margin-top: 5px;
}

/* normal state */
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea,
.sky-form .radio i.i,
.sky-form .checkbox i.i,
.sky-form .toggle i.i {
    border-color: #ddd;
    transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}

.sky-form .toggle i.i:before {
    background-color: #31344b;
}

.sky-form .button {
    opacity: 0.9;
    transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}

.sky-form .button.button-secondary {
    background-color: #b3b3b3;
}

.sky-form .icon-append,
.sky-form .icon-prepend {
    color: #ddd;
}

/* hover state */

.sky-form .input:hover input,
.sky-form .select:hover select,
.sky-form .textarea:hover textarea,
.sky-form .radio:hover i.i,
.sky-form .checkbox:hover i.i,
.sky-form .toggle:hover i.i {
    border-color: #8dc9e5;
}

.sky-form .button:hover {
    opacity: 1;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.25);
}

/* focus state */
.sky-form .input input:focus,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .radio input:focus + i.i,
.sky-form .checkbox input:focus + i.i,
.sky-form .toggle input:focus + i.i {
    border-color: #6dc5dd;
}

/* checked state */
.sky-form .radio input + i.i:after {
    background-color: #31344b;
}

.sky-form .checkbox input + i.i:after {
    color: #31344b;
}

.sky-form .radio input:checked + i.i,
.sky-form .checkbox input:checked + i.i,
.sky-form .toggle input:checked + i.i {
    border-color: #31344b;
}

/* error state */
.sky-form .state-error input,
.sky-form .state-error select,
.sky-form .state-error textarea,
.sky-form .radio.state-error i.i,
.sky-form .checkbox.state-error i.i,
.sky-form .toggle.state-error i.i {
    background: #fff0f0;
}

.sky-form .state-error select + i.i {
    background: #fff0f0;
    box-shadow: 0 0 0 12px #fff0f0;
}

.sky-form .toggle.state-error input:checked + i.i {
    background: #fff0f0;
}

.sky-form .state-error + em {
    display: block;
    margin-top: 6px;
    padding: 0 1px;
    font-style: normal;
    line-height: 15px;
    color: #ee9393;
}

/* success state */
.sky-form .state-success input,
.sky-form .state-success select,
.sky-form .state-success textarea,
.sky-form .radio.state-success i.i,
.sky-form .checkbox.state-success i.i,
.sky-form .toggle.state-success i.i {
    background: #f0fff0;
}

.sky-form .state-success select + i.i {
    background: #f0fff0;
    box-shadow: 0 0 0 12px #f0fff0;
}

.sky-form .toggle.state-success input:checked + i.i {
    background: #f0fff0;
}

.sky-form .note-success {
    color: #6fb679;
}

/* disabled state */

.sky-form .input.state-disabled input,
.sky-form .select.state-disabled,
.sky-form .textarea.state-disabled,
.sky-form .radio.state-disabled,
.sky-form .checkbox.state-disabled,
.sky-form .toggle.state-disabled,
.sky-form .button.state-disabled {
    cursor: default;
    opacity: 0.5;
}

.sky-form .input.state-disabled:hover input,
.sky-form .select.state-disabled:hover select,
.sky-form .textarea.state-disabled:hover textarea,
.sky-form .radio.state-disabled:hover i.i,
.sky-form .checkbox.state-disabled:hover i.i,
.sky-form .toggle.state-disabled:hover i.i {
    border-color: #ddd;
}

/* submited state */

.sky-form .message {
    display: none;
    color: #6fb679;
}

.sky-form .message i.i {
    display: block;
    margin: 0 auto 20px;
    width: 81px;
    height: 81px;
    border: 1px solid #6fb679;
    border-radius: 50%;
    font-size: 30px;
    line-height: 81px;
}

.sky-form.submited fieldset,
.sky-form.submited footer {
    display: none;
}

.sky-form.submited .message {
    display: block;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* datepicker */

.ui-datepicker {
    display: none;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #666;
}

.ui-datepicker a {
    color: #404040;
}

.ui-datepicker-header {
    position: relative;
    margin: -10px -12px 10px;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
    line-height: 27px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 0;
    display: block;
    width: 47px;
    height: 47px;
    font-size: 15px;
    line-height: 47px;
    text-decoration: none;
    cursor: pointer;
}

.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: 0;
}

.ui-datepicker-calendar {
    border-collapse: collapse;
    line-height: 27px;
}

.ui-datepicker-calendar th {
    color: #999;
}

.ui-datepicker-calendar a,
.ui-datepicker-calendar span {
    display: block;
    width: 31px;
    margin: auto;
    text-decoration: none;
    color: #404040;
}

.ui-datepicker-calendar a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.ui-datepicker-calendar span {
    color: #bfbfbf;
}

.ui-datepicker-today a {
    font-weight: 700;
}

.ui-datepicker-calendar .ui-state-active {
    background: rgba(0, 0, 0, 0.05);
    cursor: default;
}

.ui-datepicker-inline {
    border: 2px solid #ddd;
    background: #fff;
    box-shadow: none;
}

.ui-datepicker-inline .ui-datepicker-calendar {
    width: 100%;
}

/* modal */

.sky-form-modal {
    position: fixed;
    z-index: 1;
    display: none;
    width: 400px;
}

.sky-form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.bg-red {
    background-image: url(../img/bg-red.jpg);
}

.bg-orange {
    background-image: url(../img/bg-orange.jpg);
}

.bg-yellow {
    background-image: url(../img/bg-yellow.jpg);
}

.bg-green {
    background-image: url(../img/bg-green.jpg);
}

.bg-cyan {
    background-image: url(../img/bg-cyan.jpg);
}

.bg-blue {
    background-image: url(../img/bg-blue.jpg);
}

.bg-purple {
    background-image: url(../img/bg-purple.jpg);
}

.bg-pink {
    background-image: url(../img/bg-pink.jpg);
}

.bg-black {
    background: #000;
}

.body {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.body-s {
    max-width: 400px;
}

.modal {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
}

.modal a {
    color: #31344b;
}

@media screen and (max-width: 600px) {
    .body {
        padding: 20px;
    }
}

/* Rove */
.sky-form .textarea .fa {
    right: 15px;
}

.sky-form .textarea .sky-tooltip-top-right:after {
    right: 26px;
}

.sky-form .fa {
    position: absolute;
    right: 0px;
    color: #bbb;
    right: 3px;
    top: 0px;
}

.sky-form .fa:hover {
    color: #999;
}

.sky-form textarea {
    padding: 10px 46px 10px 10px;
    border: 1px solid #ddd;
    line-height: 22px !important;
}

/* hr style  */
.hr-style-4 {
    border: 0;
    height: 1px;
    margin: 5px 20px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

/* <hr class="hr-style" data-content="@groupName" /> */
.hr-style {
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
    display: flex;
    font-size: 16px;
    height: 34px !important;
    line-height: 30px;
    text-align: center;
    color: white;
    border-top: none;
    opacity: 1;
}

.hr-style::before {
    flex: 1;
    content: attr(data-content) !important;
}

.hr-style:hover {
    color: orange;
}

/* hr style 2 - rainbow hover */
/* <div class="hr-style2">@groupName</div>' */
.hr-style2 {
    display: flex;
    margin: 20px 0 25px 0;
    align-items: center;
    font-size: 24px;
    line-height: 32px;
    color: white;
    text-shadow: 1px 1px 1px #000;
}

.hr-style2:hover {
    text-shadow: none;
    background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
    background-size: 700% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 70s ease infinite;
}

.hr-style2::before {
    flex: 1;
    content: "";
    height: 1px;
    background: linear-gradient(to left, #fff, transparent);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.hr-style2::after {
    flex: 1;
    content: "";
    height: 1px;
    background: linear-gradient(to right, #fff, transparent);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.hr-style2:not(:empty)::before {
    margin-right: 7px;
}

.hr-style2:not(:empty)::after {
    margin-left: 7px;
}

/* hr style 3 - rainbow active */

/* <div class="hr-style3">@groupName</div>' */

.hr-style3 {
    display: flex;
    margin: 20px 0 25px 0;
    align-items: center;
    font-size: 24px;
    line-height: 32px;
    background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
    background-size: 700% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 70s ease infinite;
}

.hr-style3::before {
    flex: 1;
    content: "";
    height: 1px;
    background: linear-gradient(to left, #fff, transparent);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.hr-style3::after {
    flex: 1;
    content: "";
    height: 1px;
    background: linear-gradient(to right, #fff, transparent);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.hr-style3:not(:empty)::before {
    margin-right: 7px;
}

.hr-style3:not(:empty)::after {
    margin-left: 7px;
}

/* hr textonly */
.hr-textonly {
    margin: 20px 0 25px 0;
    font-size: 24px;
    color: white;
    text-shadow: 1px 1px 1px #000;
    line-height: 32px;
}
