@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
}

/* grid css  */
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 -16px;
}

.row>* {
    width: 100%;
    padding: 0 16px;

}

.col-6 {
    width: 50%;
    padding: 0 16px;
}


/* grid css ended  */
/* theme setup  */
.page-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: #191970;
    margin-top: 0;

}

.card {
    padding: 24px;
    border: 1px solid #cccccc52;
    border-radius: 16px;
}
.card-small{
    max-width: 436px;
    margin: auto;
}
.text-center{
    text-align: center;
}
.theme-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4D4D4D;
    display: block;
    margin-bottom: 0.5rem;
}

.theme-input ,
.theme-select{
    display: block;
    outline: none;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    color: #808080;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.theme-select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5L8 11L14 5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
.theme-input:focus {
    border-color: #191970;
    box-shadow: 0px 0px 20px 0px #19197038;
}
.form-item{
    margin-bottom: 1rem;
}
.switch-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .switch-secondary input {
    display: none;
  }
  
  .switch-secondary small {
    display: inline-block;
    width: 38px;
    height: 15px;
    background: #4D4D4D;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
  }
  
  .switch-secondary small:before {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    background: #fff;
    border-radius: 50%;
    top: -2px;
    left: -1px;
    transition: .3s;
    box-shadow: -3px 0 3px rgba(0, 0, 0, 0.25);
  }
  .switch-secondary input:checked~small {
    background: #19197059;
    transition: .3s;
  }
  
  .switch-secondary input:checked~small:before {
    transform: translate(20px, 0px);
    transition: .3s;
    background: #191970;
    box-shadow: 3px 0 3px rgba(0, 0, 0, 0.25);
  }
  .mb-2{
    margin-bottom: 0.5rem;
  }
  .border-right{
    border-right: 1px dashed #cccccc84;
  }
  .w-100{
    width: 100%;
  }
  .btn{
    padding:.575rem 1rem;
    margin: 4px 6px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 6px;
    color: #4D4D4D;
    border: 1px solid #ccc;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }
  .btn .icon img{
    vertical-align: middle;
    margin: 0 4px;
  }
  .btn-outline{
   background-color: transparent;
   height: 45px !important;
  }
  .btn-outline:hover{
    background-color: #cccccc6a;
   }
   .btn-primary{
    background-color: #191970;
    color: #fff;
    height: 45px !important;
   }
   .btn-primary:hover{
     background-color: #10105c;
    }
    .status-pill{
        padding: 4px 16px;
        display: inline-block;
        font-size: 13px;
        font-weight: 500;
        border-radius: 30px;
    }
    .status-pill.active{
        color: #7AC142;
background: rgba(122, 193, 66, 0.17);

    }
    .status-pill.inactive{
        color: #EE5B5B;
background: rgba(238, 91, 91, 0.17);


    }
/* theme setup ended  */

.mobile-app-setup-wrapper {
    display: flex;
    padding: 0 32px;

}

.side-bar {
    width: 300px;
    min-width: 300px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    min-height: calc(100vh - 200px);
    box-shadow: 0px 0px 20px rgba(74, 74, 74, 0.1);
}

.content-wrapper {
    padding: 16px 0 16px 24px;
    width: 100%;
}

.step-list {
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}

.step-list .step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #919295;
    padding: 16px 0;
    cursor: pointer;
    transition: 0.2s all;
    font-weight: 500;
}

.step-list .step-item img {
    vertical-align: middle;
    opacity: 0.5;
    transition: 0.2s all;

}

.step-list .step-item.active a,
.step-list .step-item:hover a {
    color: #4D4D4D;
    transition: 0.2s all;

}

.step-list .step-item.active img,
.step-list .step-item:hover img {
    opacity: 1;
    transition: 0.2s all;

}
.preview-wrapper{
    padding-left: 24px;
}


.page-title-header{
display:flex;
justify-content:space-between;
    margin-bottom: 16px;
}

.step-list .step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #4c4c4c;
    padding: 8px 12px;
    cursor: pointer;
    transition: 0.2s all;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 6px;
}
.event-name{
font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
    display: block;
    background: #19197029;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 6px solid #191970;
    color: midnightblue;
}
.btn img{
vertical-align: middle;
}
.step-list .step-item a{
color: #919295;
text-decoration:none;
}
/*.step-list .step-item.active a, .step-list .step-item:hover a{
color: #4D4D4D;
background: #cccccc45;
}*/
.col-8{
width: 66.7%;
}
.col-4{
width: 33.3%;
}

.step-list .step-item.active , .step-list .step-item:hover {
background: #cccccc45;
}

.action {
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid #ccc;
}

.RadEditor{
box-sizing:border-box;
}

td .btn{
height: auto !important;
    padding: 4px 12px;
    line-height: normal;
}

.btn-outline-primary{
border:1px solid #191970;
color:#191970;
background:transparent;
}

/* Telerik custom css   */
	.content-wrapper .RadGrid {
    background: #FFFFFF;
    border: 1px solid rgba(145, 146, 149, 0.5);
    box-shadow: 0px 1px 2px rgba(56, 65, 74, 0.08);
    border-radius: 5px;
    transform: matrix(1, 0, 0, 1, 0, 0);
    overflow: hidden;
}

.content-wrapper .RadGrid thead th.rgHeader {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #191970;
    padding: 7px 16px;
    border-bottom: 1px solid #cccccc45;
    background: #F5F5F5;
    box-shadow: 0px 1px 2px rgba(56, 65, 74, 0.08);

}
.content-wrapper .RadGrid .rgRow:hover {
    background-color: #bababa0f;
    transition: 0.2s all;

}

.content-wrapper .RadGrid .rgAltRow td, .content-wrapper .RadGrid .rgRow td {
    font-weight: 500;
    font-size: 14px !important;
    line-height: 21px;
    color: #4c4c4c;
    min-height: 42px;
    padding: 7px 16px;
}


/*End Telerik custom css*/



/*Color Picker Start CSS*/

.RadColorPicker , .RadColorPicker .rcpIcon{

width: 100%;
    box-sizing: border-box;
    height: 32px;
z-index:0;
}
.RadColorPicker .rcpIcon a{
    background-image: none;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    height: 32px;
padding-right: 24px;
}
.RadColorPicker .rcpIcon a:before{
content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2f2f2f;
    position: absolute;
    right: 6px;
    top: 12px;
}
.RadColorPicker .rcpIcon em{
  z-index: 9;
    margin: 6px 0px 0px 12px;
    height: calc(100% - 12px);
    width: calc(100% - 36px);
}

/* End Color Picker CSS*/


/* RadCombo and Dropdown CSS start */


.content-wrapper .RadComboBox td {
    padding: 0 !important;
}
.RadComboBox table td.rcbInputCell {
    padding: 0 4px 0 5px !important;
}

.content-wrapper .RadComboBox {
border: 1px solid #ccc;
    border-radius: 4px;
position:relative;
}
.content-wrapper .RadComboBox:before{
content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2f2f2f;
    position: absolute;
    right: 12px;
    top: 15px;
}
.content-wrapper .RadComboBox>table {
height: 32px;
}
.content-wrapper .RadComboBox_Default .rcbReadOnly .rcbInput{
font-size:1rem;
}
.content-wrapper .rcbInputCell, .content-wrapper .rcbArrowCell{
background-image: none !important;
}
.content-wrapper .RadComboBox table td.rcbInputCell {
    padding: 0 4px 0 12px !important;
}

.content-wrapper .RadDropDownList_Default .rddlInner{
background-image: none;
    display: block;
    outline: none;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    color: #333;
    width: 100%;
    padding: .2rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.content-wrapper .RadDropDownList_Default .rddlInner:before{
content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2f2f2f;
    position: absolute;
    right: 12px;
    top: 13px;
}
.content-wrapper .RadDropDownList_Default .rddlIcon{
background-image:none;
}

/* RadCombo and Dropdown CSS End */