_elements.scss 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101
  1. $default: #f9f9ff;
  2. $primary: $theme-color2;
  3. $success: #4cd3e3;
  4. $info: #38a4ff;
  5. $warning: #f4e700;
  6. $danger: #f44a40;
  7. $link: #f9f9ff;
  8. $disable: (#222222, .3);
  9. $primary-color: #7c32ff;
  10. $primary-color1: #c738d8;
  11. $title-color: #415094;
  12. $text-color: #828bb2;
  13. $white: #fff;
  14. $offwhite: #f9f9ff;
  15. $black: #000;
  16. // Mixins
  17. @mixin transition($args: all 0.3s ease 0s) {
  18. -webkit-transition: $args;
  19. -moz-transition: $args;
  20. -o-transition: $args;
  21. transition: $args;
  22. }
  23. @mixin transition-duration($args1, $args2) {
  24. -webkit-transition-duration: $args1, $args2;
  25. -moz-transition-duration: $args1, $args2;
  26. -o-transition-duration: $args1, $args2;
  27. transition-duration: $args1, $args2;
  28. }
  29. @mixin transition-delay($args1, $args2) {
  30. -webkit-transition-delay: $args1, $args2;
  31. -moz-transition-delay: $args1, $args2;
  32. -o-transition-delay: $args1, $args2;
  33. transition-delay: $args1, $args2;
  34. }
  35. @mixin transition-property($args1, $args2) {
  36. -webkit-transition-property: $args1, $args2;
  37. -moz-transition-property: $args1, $args2;
  38. -o-transition-property: $args1, $args2;
  39. transition-property: $args1, $args2;
  40. }
  41. @mixin filter($filter-type, $filter-amount) {
  42. -webkit-filter: $filter-type+unquote("(#{$filter-amount})");
  43. -moz-filter: $filter-type+unquote("(#{$filter-amount})");
  44. -ms-filter: $filter-type+unquote("(#{$filter-amount})");
  45. -o-filter: $filter-type+unquote("(#{$filter-amount})");
  46. filter: $filter-type+unquote("(#{$filter-amount})");
  47. }
  48. @mixin gradient($deg, $args1,$args2){
  49. background: -webkit-linear-gradient($deg, $args1, $args2);
  50. background: -moz-linear-gradient($deg, $args1, $args2);
  51. background: -o-linear-gradient($deg, $args1, $args2);
  52. background: -ms-linear-gradient($deg, $args1, $args2);
  53. background: linear-gradient($deg, $args1, $args2);
  54. }
  55. @mixin transform($transform) {
  56. -webkit-transform: $transform;
  57. -moz-transform: $transform;
  58. -ms-transform: $transform;
  59. -o-transform: $transform;
  60. transform: $transform;
  61. }
  62. @mixin animation($args) {
  63. -webkit-animation: $args;
  64. -moz-animation: $args;
  65. -o-animation: $args;
  66. animation: $args;
  67. }
  68. .sample-text-area {
  69. background: $white;
  70. padding: 100px 0 70px 0;
  71. }
  72. .text-heading {
  73. margin-bottom: 30px;
  74. font-size: 24px;
  75. }
  76. b,
  77. sup,
  78. sub,
  79. u,
  80. del {
  81. color: $primary;
  82. }
  83. h1 {
  84. font-size: 36px;
  85. }
  86. h2 {
  87. font-size: 30px;
  88. }
  89. h3 {
  90. font-size: 24px;
  91. }
  92. h4 {
  93. font-size: 18px;
  94. }
  95. h5 {
  96. font-size: 16px;
  97. }
  98. h6 {
  99. font-size: 14px;
  100. }
  101. h1,
  102. h2,
  103. h3,
  104. h4,
  105. h5,
  106. h6 {
  107. line-height: 1.2em;
  108. }
  109. .typography {
  110. h1,
  111. h2,
  112. h3,
  113. h4,
  114. h5,
  115. h6 {
  116. color: $text-color;
  117. }
  118. }
  119. .button-area {
  120. .border-top-generic {
  121. padding: 70px 15px;
  122. border-top: 1px dotted #eee;
  123. }
  124. background: $white;
  125. }
  126. .button-group-area {
  127. .genric-btn {
  128. margin-right: 10px;
  129. margin-top: 10px;
  130. &:last-child {
  131. margin-right: 0;
  132. }
  133. }
  134. }
  135. .genric-btn {
  136. display: inline-block;
  137. outline: none;
  138. line-height: 40px;
  139. padding: 0 30px;
  140. font-size: .8em;
  141. text-align: center;
  142. text-decoration: none;
  143. font-weight: 500;
  144. cursor: pointer;
  145. @include transition();
  146. &:focus {
  147. outline: none;
  148. }
  149. &.e-large {
  150. padding: 0 40px;
  151. line-height: 50px;
  152. }
  153. &.large {
  154. line-height: 45px;
  155. }
  156. &.medium {
  157. line-height: 30px;
  158. }
  159. &.small {
  160. line-height: 25px;
  161. }
  162. &.radius {
  163. border-radius: 3px;
  164. }
  165. &.circle {
  166. border-radius: 20px;
  167. }
  168. &.arrow {
  169. display: -webkit-inline-box;
  170. display: -ms-inline-flexbox;
  171. display: inline-flex;
  172. -webkit-box-align: center;
  173. -ms-flex-align: center;
  174. align-items: center;
  175. span {
  176. margin-left: 10px;
  177. }
  178. }
  179. &.default {
  180. color: $title-color;
  181. background: $default;
  182. border: 1px solid transparent;
  183. &:hover {
  184. border: 1px solid $default;
  185. background: $white;
  186. }
  187. }
  188. &.default-border {
  189. border: 1px solid $default;
  190. background: $white;
  191. &:hover {
  192. color: $title-color;
  193. background: $default;
  194. border: 1px solid transparent;
  195. }
  196. }
  197. &.primary {
  198. color: $white;
  199. background: $primary;
  200. border: 1px solid transparent;
  201. &:hover {
  202. color: $primary;
  203. border: 1px solid $primary;
  204. background: $white;
  205. }
  206. }
  207. &.primary-border {
  208. color: $primary;
  209. border: 1px solid $primary;
  210. background: $white;
  211. &:hover {
  212. color: $white;
  213. background: $primary;
  214. border: 1px solid transparent;
  215. }
  216. }
  217. &.success {
  218. color: $white;
  219. background: $success;
  220. border: 1px solid transparent;
  221. &:hover {
  222. color: $success;
  223. border: 1px solid $success;
  224. background: $white;
  225. }
  226. }
  227. &.success-border {
  228. color: $success;
  229. border: 1px solid $success;
  230. background: $white;
  231. &:hover {
  232. color: $white;
  233. background: $success;
  234. border: 1px solid transparent;
  235. }
  236. }
  237. &.info {
  238. color: $white;
  239. background: $info;
  240. border: 1px solid transparent;
  241. &:hover {
  242. color: $info;
  243. border: 1px solid $info;
  244. background: $white;
  245. }
  246. }
  247. &.info-border {
  248. color: $info;
  249. border: 1px solid $info;
  250. background: $white;
  251. &:hover {
  252. color: $white;
  253. background: $info;
  254. border: 1px solid transparent;
  255. }
  256. }
  257. &.warning {
  258. color: $white;
  259. background: $warning;
  260. border: 1px solid transparent;
  261. &:hover {
  262. color: $warning;
  263. border: 1px solid $warning;
  264. background: $white;
  265. }
  266. }
  267. &.warning-border {
  268. color: $warning;
  269. border: 1px solid $warning;
  270. background: $white;
  271. &:hover {
  272. color: $white;
  273. background: $warning;
  274. border: 1px solid transparent;
  275. }
  276. }
  277. &.danger {
  278. color: $white;
  279. background: $danger;
  280. border: 1px solid transparent;
  281. &:hover {
  282. color: $danger;
  283. border: 1px solid $danger;
  284. background: $white;
  285. }
  286. }
  287. &.danger-border {
  288. color: $danger;
  289. border: 1px solid $danger;
  290. background: $white;
  291. &:hover {
  292. color: $white;
  293. background: $danger;
  294. border: 1px solid transparent;
  295. }
  296. }
  297. &.link {
  298. color: $title-color;
  299. background: $link;
  300. text-decoration: underline;
  301. border: 1px solid transparent;
  302. &:hover {
  303. color: $title-color;
  304. border: 1px solid $link;
  305. background: $white;
  306. }
  307. }
  308. &.link-border {
  309. color: $title-color;
  310. border: 1px solid $link;
  311. background: $white;
  312. text-decoration: underline;
  313. &:hover {
  314. color: $title-color;
  315. background: $link;
  316. border: 1px solid transparent;
  317. }
  318. }
  319. &.disable {
  320. color: $disable;
  321. background: $link;
  322. border: 1px solid transparent;
  323. cursor: not-allowed;
  324. }
  325. }
  326. .generic-blockquote {
  327. padding: 30px 50px 30px 30px;
  328. background: #f9f9ff;
  329. border-left: 2px solid $primary;
  330. }
  331. .progress-table-wrap {
  332. overflow-x: scroll;
  333. }
  334. .progress-table {
  335. background: #f9f9ff;
  336. padding: 15px 0px 30px 0px;
  337. min-width: 800px;
  338. .serial {
  339. width: 11.83%;
  340. padding-left: 30px;
  341. }
  342. .country {
  343. width: 28.07%;
  344. }
  345. .visit {
  346. width: 19.74%;
  347. }
  348. .percentage {
  349. width: 40.36%;
  350. padding-right: 50px;
  351. }
  352. .table-head {
  353. display: flex;
  354. .serial,
  355. .country,
  356. .visit,
  357. .percentage {
  358. color: $title-color;
  359. line-height: 40px;
  360. text-transform: uppercase;
  361. font-weight: 500;
  362. }
  363. }
  364. .table-row {
  365. padding: 15px 0;
  366. border-top: 1px solid #edf3fd;
  367. display: flex;
  368. .serial,
  369. .country,
  370. .visit,
  371. .percentage {
  372. display: flex;
  373. align-items: center;
  374. }
  375. .country {
  376. img {
  377. margin-right: 15px;
  378. }
  379. }
  380. .percentage {
  381. .progress {
  382. width: 80%;
  383. border-radius: 0px;
  384. background: transparent;
  385. .progress-bar {
  386. height: 5px;
  387. line-height: 5px;
  388. &.color-1 {
  389. background-color: #6382e6;
  390. }
  391. &.color-2 {
  392. background-color: #e66686;
  393. }
  394. &.color-3 {
  395. background-color: #f09359;
  396. }
  397. &.color-4 {
  398. background-color: #73fbaf;
  399. }
  400. &.color-5 {
  401. background-color: #73fbaf;
  402. }
  403. &.color-6 {
  404. background-color: #6382e6;
  405. }
  406. &.color-7 {
  407. background-color: #a367e7;
  408. }
  409. &.color-8 {
  410. background-color: #e66686;
  411. }
  412. }
  413. }
  414. }
  415. }
  416. }
  417. .single-gallery-image {
  418. margin-top: 30px;
  419. background-repeat: no-repeat !important;
  420. background-position: center center !important;
  421. background-size: cover !important;
  422. height: 200px;
  423. }
  424. .list-style {
  425. width: 14px;
  426. height: 14px;
  427. }
  428. .unordered-list {
  429. li {
  430. position: relative;
  431. padding-left: 30px;
  432. line-height: 1.82em !important;
  433. &:before {
  434. content: "";
  435. position: absolute;
  436. width: 14px;
  437. height: 14px;
  438. border: 3px solid $primary;
  439. background: $white;
  440. top: 4px;
  441. left: 0;
  442. border-radius: 50%;
  443. }
  444. }
  445. }
  446. .ordered-list {
  447. margin-left: 30px;
  448. li {
  449. list-style-type: decimal-leading-zero;
  450. color: $primary;
  451. font-weight: 500;
  452. line-height: 1.82em !important;
  453. span {
  454. font-weight: 300;
  455. color: $text-color;
  456. }
  457. }
  458. }
  459. .ordered-list-alpha {
  460. li {
  461. margin-left: 30px;
  462. list-style-type: lower-alpha;
  463. color: $primary;
  464. font-weight: 500;
  465. line-height: 1.82em !important;
  466. span {
  467. font-weight: 300;
  468. color: $text-color;
  469. }
  470. }
  471. }
  472. .ordered-list-roman {
  473. li {
  474. margin-left: 30px;
  475. list-style-type: lower-roman;
  476. color: $primary;
  477. font-weight: 500;
  478. line-height: 1.82em !important;
  479. span {
  480. font-weight: 300;
  481. color: $text-color;
  482. }
  483. }
  484. }
  485. .single-input {
  486. display: block;
  487. width: 100%;
  488. line-height: 40px;
  489. border: none;
  490. outline: none;
  491. background: #f9f9ff;
  492. padding: 0 20px;
  493. &:focus {
  494. outline: none;
  495. }
  496. }
  497. .input-group-icon {
  498. position: relative;
  499. .icon {
  500. position: absolute;
  501. left: 20px;
  502. top: 0;
  503. line-height: 40px;
  504. i {
  505. color: #797979;
  506. }
  507. z-index: 3;
  508. }
  509. .single-input {
  510. padding-left: 45px;
  511. }
  512. }
  513. .single-textarea {
  514. display: block;
  515. width: 100%;
  516. line-height: 40px;
  517. border: none;
  518. outline: none;
  519. background: #f9f9ff;
  520. padding: 0 20px;
  521. height: 100px;
  522. resize: none;
  523. &:focus {
  524. outline: none;
  525. }
  526. }
  527. .single-input-primary {
  528. display: block;
  529. width: 100%;
  530. line-height: 40px;
  531. border: 1px solid transparent;
  532. outline: none;
  533. background: #f9f9ff;
  534. padding: 0 20px;
  535. &:focus {
  536. outline: none;
  537. border: 1px solid $primary;
  538. }
  539. }
  540. .single-input-accent {
  541. display: block;
  542. width: 100%;
  543. line-height: 40px;
  544. border: 1px solid transparent;
  545. outline: none;
  546. background: #f9f9ff;
  547. padding: 0 20px;
  548. &:focus {
  549. outline: none;
  550. border: 1px solid #eb6b55;
  551. }
  552. }
  553. .single-input-secondary {
  554. display: block;
  555. width: 100%;
  556. line-height: 40px;
  557. border: 1px solid transparent;
  558. outline: none;
  559. background: #f9f9ff;
  560. padding: 0 20px;
  561. &:focus {
  562. outline: none;
  563. border: 1px solid #f09359;
  564. }
  565. }
  566. .default-switch {
  567. width: 35px;
  568. height: 17px;
  569. border-radius: 8.5px;
  570. background: #f9f9ff;
  571. position: relative;
  572. cursor: pointer;
  573. input {
  574. position: absolute;
  575. left: 0;
  576. top: 0;
  577. right: 0;
  578. bottom: 0;
  579. width: 100%;
  580. height: 100%;
  581. opacity: 0;
  582. cursor: pointer;
  583. +label {
  584. position: absolute;
  585. top: 1px;
  586. left: 1px;
  587. width: 15px;
  588. height: 15px;
  589. border-radius: 50%;
  590. background: $primary;
  591. @include transition (all .2s);
  592. box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  593. cursor: pointer;
  594. }
  595. &:checked {
  596. +label {
  597. left: 19px;
  598. }
  599. }
  600. }
  601. }
  602. .primary-switch {
  603. width: 35px;
  604. height: 17px;
  605. border-radius: 8.5px;
  606. background: #f9f9ff;
  607. position: relative;
  608. cursor: pointer;
  609. input {
  610. position: absolute;
  611. left: 0;
  612. top: 0;
  613. right: 0;
  614. bottom: 0;
  615. width: 100%;
  616. height: 100%;
  617. opacity: 0;
  618. +label {
  619. position: absolute;
  620. left: 0;
  621. top: 0;
  622. right: 0;
  623. bottom: 0;
  624. width: 100%;
  625. height: 100%;
  626. &:before {
  627. content: "";
  628. position: absolute;
  629. left: 0;
  630. top: 0;
  631. right: 0;
  632. bottom: 0;
  633. width: 100%;
  634. height: 100%;
  635. background: transparent;
  636. border-radius: 8.5px;
  637. cursor: pointer;
  638. @include transition (all .2s);
  639. }
  640. &:after {
  641. content: "";
  642. position: absolute;
  643. top: 1px;
  644. left: 1px;
  645. width: 15px;
  646. height: 15px;
  647. border-radius: 50%;
  648. background: $white;
  649. @include transition (all .2s);
  650. box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  651. cursor: pointer;
  652. }
  653. }
  654. &:checked {
  655. +label {
  656. &:after {
  657. left: 19px;
  658. }
  659. &:before {
  660. background: $primary;
  661. }
  662. }
  663. }
  664. }
  665. }
  666. .confirm-switch {
  667. width: 35px;
  668. height: 17px;
  669. border-radius: 8.5px;
  670. background: #f9f9ff;
  671. position: relative;
  672. cursor: pointer;
  673. input {
  674. position: absolute;
  675. left: 0;
  676. top: 0;
  677. right: 0;
  678. bottom: 0;
  679. width: 100%;
  680. height: 100%;
  681. opacity: 0;
  682. +label {
  683. position: absolute;
  684. left: 0;
  685. top: 0;
  686. right: 0;
  687. bottom: 0;
  688. width: 100%;
  689. height: 100%;
  690. &:before {
  691. content: "";
  692. position: absolute;
  693. left: 0;
  694. top: 0;
  695. right: 0;
  696. bottom: 0;
  697. width: 100%;
  698. height: 100%;
  699. background: transparent;
  700. border-radius: 8.5px;
  701. @include transition (all .2s);
  702. cursor: pointer;
  703. }
  704. &:after {
  705. content: "";
  706. position: absolute;
  707. top: 1px;
  708. left: 1px;
  709. width: 15px;
  710. height: 15px;
  711. border-radius: 50%;
  712. background: $white;
  713. @include transition (all .2s);
  714. box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  715. cursor: pointer;
  716. }
  717. }
  718. &:checked {
  719. +label {
  720. &:after {
  721. left: 19px;
  722. }
  723. &:before {
  724. background: $success;
  725. }
  726. }
  727. }
  728. }
  729. }
  730. .primary-checkbox {
  731. width: 16px;
  732. height: 16px;
  733. border-radius: 3px;
  734. background: #f9f9ff;
  735. position: relative;
  736. cursor: pointer;
  737. input {
  738. position: absolute;
  739. left: 0;
  740. top: 0;
  741. right: 0;
  742. bottom: 0;
  743. width: 100%;
  744. height: 100%;
  745. opacity: 0;
  746. +label {
  747. position: absolute;
  748. left: 0;
  749. top: 0;
  750. right: 0;
  751. bottom: 0;
  752. width: 100%;
  753. height: 100%;
  754. border-radius: 3px;
  755. cursor: pointer;
  756. border: 1px solid #f1f1f1;
  757. }
  758. &:checked {
  759. +label {
  760. background: url(../img/elements/primary-check.png) no-repeat center center/cover;
  761. border: none;
  762. }
  763. }
  764. }
  765. }
  766. .confirm-checkbox {
  767. width: 16px;
  768. height: 16px;
  769. border-radius: 3px;
  770. background: #f9f9ff;
  771. position: relative;
  772. cursor: pointer;
  773. input {
  774. position: absolute;
  775. left: 0;
  776. top: 0;
  777. right: 0;
  778. bottom: 0;
  779. width: 100%;
  780. height: 100%;
  781. opacity: 0;
  782. +label {
  783. position: absolute;
  784. left: 0;
  785. top: 0;
  786. right: 0;
  787. bottom: 0;
  788. width: 100%;
  789. height: 100%;
  790. border-radius: 3px;
  791. cursor: pointer;
  792. border: 1px solid #f1f1f1;
  793. }
  794. &:checked {
  795. +label {
  796. background: url(../img/elements/success-check.png) no-repeat center center/cover;
  797. border: none;
  798. }
  799. }
  800. }
  801. }
  802. .disabled-checkbox {
  803. width: 16px;
  804. height: 16px;
  805. border-radius: 3px;
  806. background: #f9f9ff;
  807. position: relative;
  808. cursor: pointer;
  809. input {
  810. position: absolute;
  811. left: 0;
  812. top: 0;
  813. right: 0;
  814. bottom: 0;
  815. width: 100%;
  816. height: 100%;
  817. opacity: 0;
  818. +label {
  819. position: absolute;
  820. left: 0;
  821. top: 0;
  822. right: 0;
  823. bottom: 0;
  824. width: 100%;
  825. height: 100%;
  826. border-radius: 3px;
  827. cursor: pointer;
  828. border: 1px solid #f1f1f1;
  829. }
  830. &:disabled {
  831. cursor: not-allowed;
  832. z-index: 3;
  833. }
  834. &:checked {
  835. +label {
  836. background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
  837. border: none;
  838. }
  839. }
  840. }
  841. }
  842. .primary-radio {
  843. width: 16px;
  844. height: 16px;
  845. border-radius: 8px;
  846. background: #f9f9ff;
  847. position: relative;
  848. cursor: pointer;
  849. input {
  850. position: absolute;
  851. left: 0;
  852. top: 0;
  853. right: 0;
  854. bottom: 0;
  855. width: 100%;
  856. height: 100%;
  857. opacity: 0;
  858. +label {
  859. position: absolute;
  860. left: 0;
  861. top: 0;
  862. right: 0;
  863. bottom: 0;
  864. width: 100%;
  865. height: 100%;
  866. border-radius: 8px;
  867. cursor: pointer;
  868. border: 1px solid #f1f1f1;
  869. }
  870. &:checked {
  871. +label {
  872. background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
  873. border: none;
  874. }
  875. }
  876. }
  877. }
  878. .confirm-radio {
  879. width: 16px;
  880. height: 16px;
  881. border-radius: 8px;
  882. background: #f9f9ff;
  883. position: relative;
  884. cursor: pointer;
  885. input {
  886. position: absolute;
  887. left: 0;
  888. top: 0;
  889. right: 0;
  890. bottom: 0;
  891. width: 100%;
  892. height: 100%;
  893. opacity: 0;
  894. +label {
  895. position: absolute;
  896. left: 0;
  897. top: 0;
  898. right: 0;
  899. bottom: 0;
  900. width: 100%;
  901. height: 100%;
  902. border-radius: 8px;
  903. cursor: pointer;
  904. border: 1px solid #f1f1f1;
  905. }
  906. &:checked {
  907. +label {
  908. background: url(../img/elements/success-radio.png) no-repeat center center/cover;
  909. border: none;
  910. }
  911. }
  912. }
  913. }
  914. .disabled-radio {
  915. width: 16px;
  916. height: 16px;
  917. border-radius: 8px;
  918. background: #f9f9ff;
  919. position: relative;
  920. cursor: pointer;
  921. input {
  922. position: absolute;
  923. left: 0;
  924. top: 0;
  925. right: 0;
  926. bottom: 0;
  927. width: 100%;
  928. height: 100%;
  929. opacity: 0;
  930. +label {
  931. position: absolute;
  932. left: 0;
  933. top: 0;
  934. right: 0;
  935. bottom: 0;
  936. width: 100%;
  937. height: 100%;
  938. border-radius: 8px;
  939. cursor: pointer;
  940. border: 1px solid #f1f1f1;
  941. }
  942. &:disabled {
  943. cursor: not-allowed;
  944. z-index: 3;
  945. }
  946. &:checked {
  947. +label {
  948. background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
  949. border: none;
  950. }
  951. }
  952. }
  953. }
  954. .default-select {
  955. height: 40px;
  956. .nice-select {
  957. border: none;
  958. border-radius: 0px;
  959. height: 40px;
  960. background: #f9f9ff;
  961. padding-left: 20px;
  962. padding-right: 40px;
  963. .list {
  964. margin-top: 0;
  965. border: none;
  966. border-radius: 0px;
  967. box-shadow: none;
  968. width: 100%;
  969. padding: 10px 0 10px 0px;
  970. .option {
  971. font-weight: 300;
  972. @include transition();
  973. line-height: 28px;
  974. min-height: 28px;
  975. font-size: 12px;
  976. padding-left: 20px;
  977. &.selected {
  978. color: $primary;
  979. background: transparent;
  980. }
  981. &:hover {
  982. color: $primary;
  983. background: transparent;
  984. }
  985. }
  986. }
  987. }
  988. .current {
  989. margin-right: 50px;
  990. font-weight: 300;
  991. }
  992. .nice-select::after {
  993. right: 20px;
  994. }
  995. }
  996. .form-select {
  997. height: 40px;
  998. width: 100%;
  999. .nice-select {
  1000. border: none;
  1001. border-radius: 0px;
  1002. height: 40px;
  1003. background: #f9f9ff;
  1004. padding-left: 45px;
  1005. padding-right: 40px;
  1006. width: 100%;
  1007. .list {
  1008. margin-top: 0;
  1009. border: none;
  1010. border-radius: 0px;
  1011. box-shadow: none;
  1012. width: 100%;
  1013. padding: 10px 0 10px 0px;
  1014. .option {
  1015. font-weight: 300;
  1016. @include transition();
  1017. line-height: 28px;
  1018. min-height: 28px;
  1019. font-size: 12px;
  1020. padding-left: 45px;
  1021. &.selected {
  1022. color: $primary;
  1023. background: transparent;
  1024. }
  1025. &:hover {
  1026. color: $primary;
  1027. background: transparent;
  1028. }
  1029. }
  1030. }
  1031. }
  1032. .current {
  1033. margin-right: 50px;
  1034. font-weight: 300;
  1035. }
  1036. .nice-select::after {
  1037. right: 20px;
  1038. }
  1039. }
  1040. .mt-10 {
  1041. margin-top: 10px;
  1042. }
  1043. .section-top-border {
  1044. padding: 50px 0;
  1045. border-top: 1px dotted #eee;
  1046. }
  1047. .mb-30 {
  1048. margin-bottom: 30px;
  1049. }
  1050. .mt-30 {
  1051. margin-top: 30px;
  1052. }
  1053. .switch-wrap {
  1054. margin-bottom: 10px;
  1055. }