﻿.formbutton {
    background-color: rgb(247, 96, 19);
    border: none;
    color: #fff !important;
    text-decoration:none !important;
    cursor: pointer;
    font-family: "Roboto", "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    left: 0px;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
}

.formbuttoninverted {
    background-color: #f0f0f0;
    border: none;
    color: rgb(247, 96, 19) !important;
    text-decoration: none !important;
    cursor: pointer;
    font-family: "Roboto", "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    left: 0px;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
}

.chosen-container.chosen-container-single > a {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .chosen-container.chosen-container-single > a:focus {
        border-color: #f76013;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(247, 96, 19, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(247, 96, 19, .6);
    }

/*#region Container Css*/
/*Form Container*/
.formcontainer {
}
/*Field Container for responsive design use*/
.controlresponder {
}
/*#endregion*/
/*#region Field Css*/
/*Base Styling  ---- Including (Textboxes, Telephone, Currency, Date, Email, Password) */
.formdetails {
}
/*Labels*/
.formlabel {
    box-shadow:none !important;
}
/*Multiline Textbox*/
.multiline {
}
/*Dropdownlist*/
.ddl {
}
/*ComboBox*/
.combobox {
}
/*Multiselect List Box*/
.listbox {
}
/*Radio Button*/
.radiobutton {
}
/*Checkbox*/
.checkbox {
    width: auto !important;
}
/*FileUploader*/
.fileuploader {
}
/*#endregion*/

/*FileUploader*/
.htmleditor {
}
/*#endregion*/

/*Submit Button*/
.button {
}

/*Response Label*/
.responselbl {
}

.validators {
    color: #f76013;
    font-style: italic;
}

.deletebtn{
    border:0;
}

    .deletebtn:hover {
        color: #fff;
        background-color: #f76013;
    }

.activitycard {    
    margin-bottom: 25px;
}

    .activitycard > .card-header.py-3 .checkboxcontainer {
        margin-bottom: 0 !important;
    }

.guestdetail{
    width:48%;
    float:left;
    margin-bottom:10px;
}

.minicon {
    float: left;
    margin-top: 3px;
    color: #f76013;
    font-size: 20px;
    padding: 0px 8px 0px 8px;
    margin-right: 5px;
    background-color: #f0f0f0;
    cursor:pointer;
}

    .minicon:hover {
        background-color: #f76013;
        color:#fff;
    }

/*Checkbox Styling*/
/*/////////////////////*/
.checkboxcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float:left;
    margin-top:5px;
    width:auto !important;
}

    /* Hide the browser's default checkbox */
    .checkboxcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxcontainer input:checked ~ .checkmark {
    background-color: #f76013;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxcontainer .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*/////////////////////*/


@media (max-width:585px){
    .controlresponder {
        width: 100% !important;
    }

    .guestdetail {
        width: 100%;
    }
}