.registers {
    .register-form {
        label {
            margin-bottom: 5px;
        }
        .nice-select {
            padding: 16px 20px 14px 46px;
            font-size: 14px;
            margin-bottom: 24px;
            border-radius: 10px;
        } 
        .img-icon {
            position: absolute;
            left: 18px;
            top: 51px;
            &.icon-style {
                bottom: 17px;
                top:unset
            }
        }
        .img-email {
            bottom: 19px;
        }
        .text-wrap {
           margin-left: -22px;
            fieldset {
                width: calc(50% - 22px);
                margin-left: 22px;
            }
        }
        .input-item {
            input {
                border: 1px solid $color-5;
                padding: 11px 14px 13px 17px;     
                color: $color-2;
                font-weight: 500;
                background-color: $color-1;
                border-radius: 10px;
                @include transition3;
                position: relative;
                &::placeholder {
                    color: $color-2;
                    line-height: 26px;
                    font-size: 14px;
                    font-weight: 400;
                    @include transition3;
                }
                &:focus {
                    border: 1px solid $color-3;
                }             
            }
        }
        fieldset {
            position     : relative;
            width        : 100%;
            margin-bottom: 24px;
            &.message-wrap {
                margin-bottom: 16px;
            }
            input {
                border: 1px solid $color-5;
                padding: 11px 14px 13px 46px;     
                color: $color-2;
                font-weight: 500;
                background-color: $color-1;
                border-radius: 10px;
                @include transition3;
                position: relative;
                &::placeholder {
                    color: $color-2;
                    line-height: 26px;
                    font-size: 14px;
                    font-weight: 400;
                    @include transition3;
                }
                &:focus {
                    border: 1px solid $color-3;
                }  
            }
            textarea  {
                padding: 13px 15px 22px 17px;
                background-color: $color-1;
                border: 1px solid $color-5;
                color: $color-2;
                font-weight: 500;
                padding-right: 5px;
                @include transition3;
                border-radius: 10px;
                &::placeholder {
                    color: $color-2;
                    line-height: 26px;
                    font-size: 14px;
                    font-weight: 400;
                    @include transition3;
                }
                &:focus {
                    border: 1px solid $color-3;
                } 
            }            
        }
        button {
            padding: 16px 29px 16px 29px;
            border: unset;
        }
    }
}

.small-text {
	font-size: 10px;
}

.alert-text {
	color: red;
}

.alert-message {
	color: red;
	font-style: italic;
}

.spinner {
	display: inline-block;
	opacity: 0;
	width: 0;
	-webkit-transition: opacity 0.25s, width 0.25s;
	-moz-transition: opacity 0.25s, width 0.25s;
	-o-transition: opacity 0.25s, width 0.25s;
	transition: opacity 0.25s, width 0.25s;
}

.has-spinner.active {
 	cursor: progress;
}

.has-spinner.active .spinner {
 	opacity: 1;
 	width: auto;
}

.has-spinner.btn.active .spinner {
 	min-width: 20px;
}

.respond-comment div {
	padding-bottom:20px;
}

// copy to clipboard
.bd-clipboard {
    position: relative;
    display: none;
    float: right
}

.bd-clipboard+.highlight {
    margin-top: 0
}

@media (min-width: 768px) {
    .bd-clipboard {
        display:block
    }
}

.btn-clipboard {
    position: absolute;
    top: .75em;
    right: .5em;
    z-index: 10;
    display: block;
    padding: .5em .75em .625em;
    line-height: 1;
    color: var(--bs-body-color);
    background-color: var(--bs-tertiary-bg);
    border: 0;
    border-radius: .25rem
}

.btn-clipboard:hover {
    color: var(--bs-link-hover-color)
}

.btn {
	margin-bottom:10px;
}

.btn-primary {
	background-color: #ffa920;
	border-color: #ffa920;
}

.btn-primary:hover {
	background-color: rgb(242, 149, 0);
	border-color: rgb(242, 149, 0);
}

.btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.text-event-date {
	margin-bottom:10px;
}

.text-anchor {
	color: #ffa920;
	font-weight:bold;
}

.text-anchor:hover {
	color: rgb(242, 149, 0);
}

.listing-header {
	color: #000;
	font-weight:bold;
}

.listing-header:hover {
	color: #6c757d;
}

.text-anchor-success {
	color: #28a745;
	font-weight: bold;
}

.text-anchor-success:hover {
	color: #218838;
}